StartupKitstartupkit

MCP Setup

Configure StartupKit as an MCP server for any AI agent

StartupKit exposes all its research tools via the Model Context Protocol (MCP). Any MCP-compatible agent can use them as native tools.

Authentication

Get your API key at startupkit.com/pro, then set it as an environment variable:

STARTUPKIT_API_KEY=sk_pro_...

Generic Config

All agents use the same base config. Just add the MCP server entry:

{
  "mcpServers": {
    "startupkit": {
      "command": "npx",
      "args": ["-y", "@startupkit/mcp"],
      "env": {
        "STARTUPKIT_API_KEY": "sk_pro_..."
      }
    }
  }
}

Per-Agent Setup

Claude Code

File: ~/.claude/settings.json

{
  "mcpServers": {
    "startupkit": {
      "command": "npx",
      "args": ["-y", "@startupkit/mcp"],
      "env": {
        "STARTUPKIT_API_KEY": "sk_pro_..."
      }
    }
  }
}

Cursor

Cursor Settings → MCP → Add Server

FieldValue
Namestartupkit
Commandnpx -y @startupkit/mcp
EnvSTARTUPKIT_API_KEY=sk_pro_...

OpenCode

File: ~/.opencode/mcp.json

{
  "mcpServers": {
    "startupkit": {
      "command": "npx",
      "args": ["-y", "@startupkit/mcp"],
      "env": {
        "STARTUPKIT_API_KEY": "sk_pro_..."
      }
    }
  }
}

Hermes

File: ~/.hermes/config.yaml

mcp_servers:
  startupkit:
    command: npx
    args: [-y, "@startupkit/mcp"]
    env:
      STARTUPKIT_API_KEY: sk_pro_...

Claude Desktop

File: claude_desktop_config.json

{
  "mcpServers": {
    "startupkit": {
      "command": "npx",
      "args": ["-y", "@startupkit/mcp"],
      "env": {
        "STARTUPKIT_API_KEY": "sk_pro_..."
      }
    }
  }
}

Available Tools

Once configured, your agent can use these tools:

ToolDescription
researchFull market research on any topic
domainsDomain availability search
domain_checkCheck a specific domain
seoDomain SEO analysis
trendsGoogle Trends data
keywordsKeyword research
keyword_ideasRelated keyword suggestions
appsApp store search
app_detailsApp store app details
namebioDomain history search
expired_domainsExpiring domain listings
auction_domainsDomain auction listings

On this page