npm @agentseo/mcp-serverstreamable-httpMITupdated 1mo ago
Official open-source clients for AgentSEO, the SEO intelligence API for AI agents and developer workflows.
Was kannst du mit AgentSEO machen?
AgentSEO Clients
Official open-source clients for AgentSEO, the SEO intelligence API for AI agents and developer workflows.
This repository contains the integration layer only:
packages/js-sdk- JavaScript/TypeScript SDKpackages/python-sdk- Python SDKpackages/mcp-server- Model Context Protocol server
The hosted AgentSEO API, worker system, provider orchestration, billing, and transformation logic are not part of this repository.
Quick Start
Use the JavaScript SDK:
npm install @agentseo/sdk
import { AgentSEO } from "@agentseo/sdk";
const client = new AgentSEO({
apiKey: process.env.AGENTSEO_API_KEY!,
});
const result = await client.search(
{ query: "seo api", location: "United States", limit: 5 },
{ sync: true },
);
console.log(result);
Use the Python SDK:
pip install agentseo-sdk
from agentseo_sdk import AgentSEOClient
client = AgentSEOClient(api_key="sk_live_...")
result = client.search(query="seo api", sync=True)
print(result)
Use the MCP server:
export AGENTSEO_API_KEY="sk_live_your_key"
npx -y @agentseo/mcp-server
Development
Build the JavaScript SDK:
cd packages/js-sdk
npm install
npm run build
Build the MCP server:
cd packages/mcp-server
npm install
npm run build
Install the Python SDK locally:
cd packages/python-sdk
python -m pip install -e .
Security
Do not commit API keys, .env files, customer payloads, or provider credentials. See SECURITY.md.
License
MIT. See package-level LICENSE files.
Installation
AgentSEO zu deinem Client hinzufügen. Wähl den, den du nutzt.
{
"servers": {
"mcp-server": {
"type": "http",
"url": "https://www.agentseo.dev/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mcp-server -- npx -y @agentseo/mcp-servercodex mcp add mcp-server -- npx -y @agentseo/mcp-serveramp mcp add mcp-server -- npx -y @agentseo/mcp-server{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@agentseo/mcp-server"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@agentseo/mcp-server"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@agentseo/mcp-server"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@agentseo/mcp-server"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@agentseo/mcp-server"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp-server": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@agentseo/mcp-server"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp-server": {
"command": {
"path": "npx",
"args": [
"-y",
"@agentseo/mcp-server"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @agentseo/mcp-serverRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Unvollständig
- Dokumentation22/25
- Pflege16/25
- Vertrauen13/20
- Funktionsumfang0/15
- Installation15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 45 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Versionsverlauf
| Versionen | Veröffentlicht |
|---|---|
| 0.1.4Aktuell | 20. Juli 2026 |
| 0.1.3 | 20. Juli 2026 |