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

startitup-mcp

v1.1.0

Published

MCP server for StartItUp.in — search Indian startup opportunities from any AI agent

Readme

startitup-mcp

MCP server for StartItUp.in — search Indian startup opportunities from any AI agent.

Gives AI assistants (Claude, Cursor, Windsurf, and more) access to 1000+ startup grants, credits, accelerators, incubators, government schemes, fellowships, and competitions across India.

Get an API Key

  1. Sign in at startitup.in
  2. Go to Profile → API Access
  3. Click Generate API key — copy it immediately, it's shown only once

Setup

Claude Code

Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "startitup": {
      "command": "npx",
      "args": ["startitup-mcp", "--api-key", "siu_live_YOUR_KEY"]
    }
  }
}

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "startitup": {
      "command": "npx",
      "args": ["startitup-mcp", "--api-key", "siu_live_YOUR_KEY"]
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "startitup": {
      "command": "npx",
      "args": ["startitup-mcp", "--api-key", "siu_live_YOUR_KEY"]
    }
  }
}

Environment variable (all clients)

Instead of passing the key as an argument, set it as an env var:

export STARTITUP_API_KEY=siu_live_YOUR_KEY

Then use "args": ["startitup-mcp"] without the --api-key flag.


Available Tools

list_categories

List all opportunity categories with counts.

No input required

Returns: Grants (338), Incubators (194), Startup Credits (141), Government Schemes (105), Accelerators (101), Competitions (79), Fellowships (24), Investor Programs (18)


list_filters

Get valid filter values for search. Optionally scope to a category.

category?: string   — e.g. "Grants"

Returns: all valid industries, stages, and locations to use in search_opportunities.


search_opportunities

Search and filter opportunities.

q?:        string   — full-text search
category?: string   — e.g. "Accelerators"
industry?: string   — e.g. "SaaS", "FinTech"
stage?:    string   — e.g. "Pre-Seed", "Seed"
location?: string   — e.g. "India", "Global", "Bengaluru"
limit?:    number   — max 20 (default 10)
offset?:   number   — for pagination

get_opportunity

Get full details of a specific opportunity.

id: string   — opportunity ID from search results

Returns: name, org, description, eligibility, amount, deadline, source URL.


Example Usage

Once connected, ask your AI agent:

"Find me government grants for a women-led SaaS startup at pre-seed stage in Bengaluru"

"What accelerators are open for fintech startups?"

"Show me all fellowships available for student founders"

"What are the eligibility requirements for the Startup India Seed Fund?"


Direct HTTP Access

The MCP server is also accessible as a JSON-RPC endpoint for custom integrations:

curl -X POST https://startitup.in/api/mcp \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer siu_live_YOUR_KEY" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_categories","arguments":{}}}'

License

MIT © StartItUp.in