AgentHubAgentHub

mcp-grantiq

MCP ServerMCP Registry官方收录

io.github.bch1212/mcp-grantiq · v1.0.1

Search US grants + federal contracts (Grants.gov + SAM.gov) from any LLM.

概览

mcp-grantiq 是一个MCP Server,收录自 官方 MCP Registry。支持 streamable-http、stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "mcp-grantiq": {
      "command": "npx",
      "args": [
        "-y",
        "grantiq-mcp"
      ],
      "env": {
        "GRANTIQ_API_KEY": "<GRANTIQ_API_KEY>"
      }
    }
  }
}

环境变量

GRANTIQ_API_KEY必填secret

GrantIQ API key (free dev key `grantiq-dev-key-001` or mint via /admin/keys).

相关资源

统一 Manifest

{
  "id": "io.github.bch1212/mcp-grantiq",
  "type": "mcp-server",
  "version": "1.0.1",
  "displayName": "mcp-grantiq",
  "description": "Search US grants + federal contracts (Grants.gov + SAM.gov) from any LLM.",
  "repository": {
    "url": "https://github.com/bch1212/mcp-grantiq",
    "source": "github"
  },
  "homepage": "https://mcp.grantiq.us",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "grantiq-mcp",
        "version": "1.0.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "GRANTIQ_API_KEY",
            "description": "GrantIQ API key (free dev key `grantiq-dev-key-001` or mint via /admin/keys).",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": [
      {
        "transport": "streamable-http",
        "url": "https://mcp.grantiq.us/mcp"
      }
    ]
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.bch1212/mcp-grantiq",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.bch1212%2Fmcp-grantiq/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
mcp-grantiq — MCP Server 安装与配置 · AgentHub