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 and other MCP clients.

Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
98
151.28%
Maintainers
1
Weekly downloads
 
Created
Source

@agentseo/mcp-server

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

Installation

This package is part of the AgentSEO monorepo.

  • Build the server:

    npm run build
    
  • Locate the build artifact: ./dist/index.js

Configuration

The server runs over stdio and requires the following environment variables:

  • AGENTSEO_API_KEY: Your workspace API key.
  • AGENTSEO_API_URL: (Optional) Defaults to http://localhost:3000/api/v1.

Claude Desktop Example

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "agentseo": {
      "command": "node",
      "args": ["/absolute/path/to/packages/mcp-server/dist/index.js"],
      "env": {
        "AGENTSEO_API_KEY": "sk_live_..."
      }
    }
  }
}

Available Tools

Perform a Google search.

  • query (string): Search term.
  • limit (number): Max results (default 10).
  • include_domains (string[]): Domain whitelist.

agentseo_extract

Extract content from a URL.

  • url (string): Target URL.
  • include_images (boolean): Keep image markdown.

agentseo_analyze_serp

Detailed SERP analysis.

  • keyword (string): Target keyword.
  • location (string): "United States", "United Kingdom", etc.
  • device (string): "desktop" or "mobile".

FAQs

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