Sign In

@agentseo/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agentseo/mcp-server

The official Model Context Protocol (MCP) server for AgentSEO. Exposes SEO tools to Claude Desktop, Cursor, and other MCP clients.

latest
Source
npmnpm
Version
0.1.3
Version published
Maintainers
1
Created
Source

@agentseo/mcp-server

The official Model Context Protocol (MCP) server for AgentSEO. Exposes SEO tools to Claude Desktop, Cursor, and other MCP clients.

Hosted remote MCP

AgentSEO also exposes a hosted remote MCP endpoint:

https://www.agentseo.dev/mcp

Use a server-side API key with no allowed domains.

Claude Code

claude mcp add --transport http agentseo https://www.agentseo.dev/mcp \
  --header "Authorization: Bearer sk_live_your_key" \
  --header "x-project-id: client-alpha" \
  --header "x-workflow-id: nightly-refresh"

Cursor

{
  "mcpServers": {
    "agentseo": {
      "url": "https://www.agentseo.dev/mcp",
      "headers": {
        "Authorization": "Bearer sk_live_your_key",
        "x-project-id": "client-alpha",
        "x-workflow-id": "nightly-refresh"
      }
    }
  }
}

Quickstart (Claude Desktop / Cursor)

1. Set your API key

export AGENTSEO_API_KEY="sk_live_your_key"

2. Add AgentSEO MCP server to your MCP config

For Claude Desktop, add this to claude_desktop_config.json. For Cursor, add the same block in MCP settings:

{
  "mcpServers": {
    "agentseo": {
      "command": "npx",
      "args": ["-y", "@agentseo/mcp-server"],
      "env": {
        "AGENTSEO_API_KEY": "sk_live_your_key",
        "AGENTSEO_API_URL": "https://www.agentseo.dev/api/v1",
        "AGENTSEO_PROJECT_ID": "client-alpha",
        "AGENTSEO_WORKFLOW_ID": "nightly-refresh"
      }
    }
  }
}

3. Restart your MCP client

After restart, ask Claude or Cursor:

Run agentseo_local_audit for example.com in New York, NY

Environment Variables

  • AGENTSEO_API_KEY (required): Your workspace API key.
  • AGENTSEO_API_URL (optional): Defaults to https://www.agentseo.dev/api/v1.
    • For local development use http://localhost:3000/api/v1.
  • AGENTSEO_PROJECT_ID (optional): Default project attribution for all tool calls.
  • AGENTSEO_WORKFLOW_ID (optional): Default workflow attribution for all tool calls.

Available Tools

  • agentseo_search
  • agentseo_extract
  • agentseo_analyze_serp
  • agentseo_local_audit
  • agentseo_content_gap
  • agentseo_opportunities_find
  • agentseo_opportunities_brief
  • agentseo_content_refresh_brief
  • agentseo_content_serp_outline
  • agentseo_content_brief
  • agentseo_content_draft_qa
  • agentseo_content_schema_plan
  • agentseo_content_internal_links
  • agentseo_content_title_meta
  • agentseo_content_keyword_map
  • agentseo_content_technical_qa
  • agentseo_content_action_plan
  • agentseo_site_sitemap_audit
  • agentseo_serp_volatility
  • agentseo_page_cro_qa
  • agentseo_ai_visibility_prompt_set
  • agentseo_content_programmatic_template
  • agentseo_content_cannibalization
  • agentseo_content_competitor_gap_matrix
  • agentseo_keyword_ideas_suggest
  • agentseo_keyword_metrics_overview
  • agentseo_domain_ranked_keywords
  • agentseo_domain_relevant_pages
  • agentseo_domain_competitors
  • agentseo_domain_intersection
  • agentseo_domain_traffic_estimate
  • agentseo_backlinks_summary
  • agentseo_backlinks_list
  • agentseo_backlinks_anchors
  • agentseo_backlinks_referring_domains
  • agentseo_backlinks_domain_pages
  • agentseo_backlinks_competitors
  • agentseo_backlinks_new_lost_timeseries
  • agentseo_backlinks_page_intersection
  • agentseo_backlinks_opportunity_finder
  • agentseo_page_intersection
  • agentseo_ai_overview_extract
  • agentseo_local_visibility_track
  • agentseo_rank_track
  • agentseo_job_status

agentseo_ai_overview_extract also accepts an optional target_domain when you want Claude or another MCP client to check whether your site appears in the sampled candidate set for an AI Overview query.

agentseo_content_internal_links requires target_pages; pass 1-50 candidate internal pages from your sitemap, CMS, crawler, Search Console, or agentseo_site_sitemap_audit.

Local Run (Without Claude)

AGENTSEO_API_KEY="sk_live_your_key" npx -y @agentseo/mcp-server

If startup succeeds, you should see:

AgentSEO MCP Server running on stdio

FAQs

Package last updated on 20 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