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

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

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-indexforge

Set the API key in your environment:

export INDEXFORGE_API_KEY=your-api-key-here

Tools

| 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