🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

serpagent-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serpagent-mcp

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).

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

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":"you@example.com"}'

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_..." }
    }
  }
}

License

MIT

Keywords

mcp

FAQs

Package last updated on 24 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts