
Research
/Security News
Popular npm Packages in the keyv and Cacheable Namespaces Compromised in Active Supply Chain Attack
Popular npm packages keyv and cacheable compromised.
@seodesignlab/mcp-server
Advanced tools
MCP server for SEODesignLab's x402-protected SEO endpoints — content briefs, keyword research, SERP analysis, backlink profiles, and on-page audits.
MCP (Model Context Protocol) server for SEODesignLab's x402-protected SEO endpoints.
Expose professional SEO tools — content briefs, keyword research, SERP analysis, backlink profiles, and on-page audits — to any MCP-compatible AI agent (Claude Desktop, Cursor, VS Code Copilot, etc.) with automatic x402 micropayment handling on Base.
| Tool | Endpoint | Price | Description |
|---|---|---|---|
get_content_brief | /api/briefs/ | $2.00 | Generate a POP content brief with keyword analysis, LSI terms, and content structure |
keyword_research | /api/dataforseo/keywords/ | $1.50 | Search volume, CPC, and competition difficulty for a keyword |
serp_analysis | /api/dataforseo/serp/ | $2.00 | Top 10 organic results with domain metrics and SERP features |
backlink_profile | /api/dataforseo/backlinks/ | $3.00 | Referring domains, link metrics, and anchor text distribution |
on_page_audit | /api/dataforseo/audit/ | $2.50 | Full on-page SEO audit — meta, headings, images, links, speed |
All prices are in USDC on Base and settled via the x402 protocol.
npm install @seodesignlab/mcp-server
# or
npx @seodesignlab/mcp-server
| Variable | Default | Description |
|---|---|---|
SEO_API_BASE | https://seodesignlab-paywall.seodesignlab.workers.dev | Base URL of the SEO API (CF Worker paywall) |
X402_PAY_TO | (none) | Base wallet address for x402 payments. When set, payment headers are attached automatically. |
X402_NETWORK | base | Network for x402 settlement |
Add to your claude_desktop_config.json:
{
"mcpServers": {
"seodesignlab-seo": {
"command": "npx",
"args": ["-y", "@seodesignlab/mcp-server"],
"env": {
"SEO_API_BASE": "https://seodesignlab-paywall.seodesignlab.workers.dev",
"X402_PAY_TO": "0xc78e3D02622061961156a18E10bbbF07d8e94529",
"X402_NETWORK": "base"
}
}
}
}
Config file locations:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd to your Cursor MCP settings (.cursor/mcp.json in your project root or global settings):
{
"mcpServers": {
"seodesignlab-seo": {
"command": "npx",
"args": ["-y", "@seodesignlab/mcp-server"],
"env": {
"SEO_API_BASE": "https://seodesignlab-paywall.seodesignlab.workers.dev",
"X402_PAY_TO": "0xc78e3D02622061961156a18E10bbbF07d8e94529",
"X402_NETWORK": "base"
}
}
}
}
Add to your VS Code MCP settings (.vscode/mcp.json):
{
"servers": {
"seodesignlab-seo": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@seodesignlab/mcp-server"],
"env": {
"SEO_API_BASE": "https://seodesignlab-paywall.seodesignlab.workers.dev",
"X402_PAY_TO": "0xc78e3D02622061961156a18E10bbbF07d8e94529",
"X402_NETWORK": "base"
}
}
}
}
Once configured, the SEO tools appear automatically in your AI agent. Just ask:
Generate a content brief for "HVAC repair Brooklyn"
→ Calls get_content_brief → Returns POP brief with LSI terms, word count targets, heading structure.
What's the search volume and CPC for "roofing contractor Tampa"?
→ Calls keyword_research → Returns monthly volume, CPC, competition score.
Show me the top 10 results for "dentist near me" in Rockville Centre
→ Calls serp_analysis → Returns top 10 results with domain authority, titles, descriptions.
Analyze the backlink profile of seodesignlab.com
→ Calls backlink_profile → Returns referring domains, link counts, domain rating.
Audit https://drbrattrvc.com/services/teeth-whitening/
→ Calls on_page_audit → Returns meta analysis, heading structure, image coverage, technical issues.
AI Agent (Claude, Cursor, etc.)
│
▼
MCP Server (this package)
│
▼ Adds X-Payment-* headers
Cloudflare Worker (x402 paywall)
│
├── Payment valid? ──► YES ──► Proxy to SEO API ──► Return data
│
└── No payment? ──► 402 + x402 settlement instructions
When X402_PAY_TO is configured, the MCP server attaches payment headers to every request. The Cloudflare Worker validates the x402 payment and either:
402 Payment Required with the price, wallet address, and settlement instructions.For production use, pair this MCP server with an x402-compatible client that can automatically settle micropayments. The server is designed to be payment-agnostic — it works with or without an x402 client.
The MCP server proxies to these backend endpoints at SEO_API_BASE:
Request:
{
"keyword": "HVAC repair Brooklyn",
"location": "United States",
"language": "en"
}
Response: Full POP content brief with keyword analysis, LSI terms, recommended structure.
Request:
{
"keyword": "roofing contractor Tampa",
"location": "United States",
"language": "en"
}
Response: Search volume, CPC, competition, related keywords.
Request:
{
"keyword": "dentist near me",
"location": "United States",
"language": "en"
}
Response: Top 10 organic results with titles, URLs, descriptions, and domain metrics.
Request:
{
"domain": "seodesignlab.com"
}
Response: Referring domains, backlinks count, domain rating, anchor distribution.
Request:
{
"url": "https://drbrattrvc.com/services/teeth-whitening/"
}
Response: Meta title/description analysis, heading structure, image alt coverage, link counts, page speed, content quality, technical issues.
# Install dependencies
npm install
# Build
npm run build
# Run locally (stdio transport)
npm run dev
# Type check
npx tsc --noEmit
npx @modelcontextprotocol/inspector node dist/index.js
⚠️ Don't publish yet! Wait until the Cloudflare Worker paywall is deployed and live.
When ready:
npm run build
npm publish --access public
MIT © SEODesignLab
FAQs
MCP server for SEODesignLab's x402-protected SEO endpoints — content briefs, keyword research, SERP analysis, backlink profiles, and on-page audits.
The npm package @seodesignlab/mcp-server receives a total of 45 weekly downloads. As such, @seodesignlab/mcp-server popularity was classified as not popular.
We found that @seodesignlab/mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Research
/Security News
Popular npm packages keyv and cacheable compromised.

Security News
A misconfiguration gave three Anthropic models internet access, and one, believing it was in a simulation, shipped a credential-stealing package to PyPI.

Security News
/Company News
Socket has joined the new Composer and Packagist sponsorship program as a launch sponsor, supporting the team that keeps PHP's package ecosystem secure.