mcp-server-indexforge
v1.0.2
Published
MCP server for IndexForge — gives AI agents the ability to submit URLs to Google and Bing for indexing, scan sitemaps, check index status, and detect 404s.
Downloads
173
Maintainers
Readme
mcp-server-indexforge
MCP server for IndexForge — gives AI agents the ability to submit URLs to Google and Bing for indexing.
Deploy a site, then immediately tell your AI agent to index it. Works with Claude Desktop, Claude Code, Cursor, and any MCP-compatible client.
Setup
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"indexforge": {
"command": "npx",
"args": ["-y", "mcp-server-indexforge"],
"env": {
"INDEXFORGE_API_KEY": "your-api-key-here"
}
}
}
}Claude Code
claude mcp add indexforge -- npx -y mcp-server-indexforgeSet the API key in your environment:
export INDEXFORGE_API_KEY=your-api-key-hereTools
| Tool | Description |
|------|-------------|
| indexing_status | Account overview — domains, URLs, indexed, submitted, dead |
| list_domains | List all managed domains with stats |
| add_domain | Add a new domain (optionally with custom sitemap URL) |
| remove_domain | Remove a domain |
| scan_sitemap | Discover new URLs from a domain's sitemap |
| submit_urls | Submit pending URLs to Google + IndexNow |
| push_to_index | Scan + submit in one shot (most common operation) |
| check_404s | Find broken links across all URLs |
| check_index_status | Check which URLs Google has actually indexed |
| list_urls | Paginated URL list with status details |
| submission_history | Recent submission activity |
Usage Examples
Once configured, just ask your AI assistant:
- "Add example.com and submit all URLs to Google"
- "Scan my sitemap for new pages and submit them"
- "Which of my URLs are not indexed yet?"
- "Check my site for broken links"
- "Show me my indexing stats"
- "Push my site to Google" (scan + submit in one shot)
The Deploy → Index Workflow
You: "Deploy my site to Vercel and index it"
Agent: *deploys to Vercel*
Agent: *calls add_domain with your domain*
Agent: *calls push_to_index*
Agent: "Done. Site deployed and 47 URLs submitted to Google and Bing."Environment Variables
| Variable | Description |
|----------|-------------|
| INDEXFORGE_API_KEY | API key (required — get one at indexforge.metaltorque.dev) |
| INDEXFORGE_URL | Server URL (default: https://indexforge.metaltorque.dev) |
Pricing
| Plan | Price | Domains | URLs/Domain | |------|-------|---------|-------------| | Free | $0/yr | 1 | 50 | | Starter | $99/yr | 5 | 500 | | Pro | $199/yr | 25 | 5,000 | | Business | $499/yr | 100 | 50,000 |
Sign up at indexforge.metaltorque.dev
