npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

serpagent-mcp

v1.0.1

Published

SERP Agent MCP server for stdio-only clients — thin proxy to the remote Streamable HTTP server at https://serp-agent.com/mcp (full-cycle SEO automation: technical audits, SEO articles, machine-readable pricing).

Readme

serpagent-mcp

SERP Agent — full-cycle SEO automation for AI agents — as an MCP server.

This package is a thin stdio bridge for MCP clients that cannot speak Streamable HTTP directly. It proxies stdio ⇄ HTTP to the remote server at https://serp-agent.com/mcp (via mcp-remote). If your client supports remote HTTP servers, connect directly instead — see serp-agent.com/docs/mcp.

Tools

create_project, list_projects, get_project, run_technical_audit, get_audit_report, generate_article, get_article, get_account_status, list_plans — a thin layer over the SERP Agent REST API. Long-running jobs (audits, articles) return a job id immediately; poll the matching get_* tool.

Auth

Set SERPAGENT_API_KEY to your sk_... key. No key yet? Free sandbox key in one call, no CAPTCHA:

curl -X POST https://serp-agent.com/v1/accounts \
  -H "content-type: application/json" \
  -d '{"email":"[email protected]"}'

Optional: SERPAGENT_MCP_URL overrides the server URL (default https://serp-agent.com/mcp).

Install

Claude Code

Prefer the direct HTTP transport:

claude mcp add --transport http serpagent https://serp-agent.com/mcp \
  --header "Authorization: Bearer sk_..."

Or via this stdio bridge:

claude mcp add serpagent --env SERPAGENT_API_KEY=sk_... -- npx -y serpagent-mcp

Cursor

~/.cursor/mcp.json (or project .cursor/mcp.json):

{
  "mcpServers": {
    "serpagent": {
      "command": "npx",
      "args": ["-y", "serpagent-mcp"],
      "env": { "SERPAGENT_API_KEY": "sk_..." }
    }
  }
}

Direct HTTP alternative: { "serpagent": { "url": "https://serp-agent.com/mcp", "headers": { "Authorization": "Bearer sk_..." } } }

VS Code (Copilot agent mode)

.vscode/mcp.json:

{
  "servers": {
    "serpagent": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "serpagent-mcp"],
      "env": { "SERPAGENT_API_KEY": "sk_..." }
    }
  }
}

Links

  • Docs: https://serp-agent.com/docs/mcp
  • Agent quickstart (plain REST): https://serp-agent.com/docs/agents
  • Machine-readable pricing: https://serp-agent.com/v1/plans
  • OpenAPI: https://serp-agent.com/openapi.json

License

MIT