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

@agentseo/mcp-server

v0.1.1

Published

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

Readme

@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 http://localhost:3000/api/v1.
    • For hosted API use https://www.agentseo.dev/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_local_audit_batch
  • agentseo_content_gap
  • agentseo_web_mentions (preferred; alias: agentseo_social_listen)
  • agentseo_ai_overview_extract
  • agentseo_local_visibility_track
  • agentseo_llm_mentions_track
  • agentseo_content_decay_detect
  • agentseo_keyword_cluster_build
  • agentseo_rank_track
  • agentseo_rank_history
  • 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.

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