Kindora-for-ChatGPT MCP server

Kindora-for-ChatGPT MCP server

A Python FastMCP server that re-exposes Kindora's public funder and grant tools for ChatGPT, enabling grant discovery from IRS 990 filings and Grants.gov.

Category
访问服务器

README

Kindora-for-ChatGPT MCP server

A Python FastMCP server that re-exposes Kindora's public funder and grant tools so you can add them to ChatGPT as a custom MCP connector (Developer mode / Apps). It is a thin proxy: every tool forwards to the live Kindora MCP endpoint and returns the result unchanged.

Easiest install: deploy, then paste the URL into ChatGPT

ChatGPT can't run a local repo; it connects to a hosted HTTPS URL. This server needs no API keys (Kindora's free tier is open), so hosting it is one click, no Terminal, no .env.

Deploy to Render

  1. Click the button, sign in to Render with GitHub, and approve. Render reads render.yaml and builds the container. First deploy takes ~2 minutes.
  2. Copy the service URL Render gives you and add /mcp to the end, e.g. https://kindora-chatgpt-mcp.onrender.com/mcp.
  3. In ChatGPT: Settings -> Connectors (Apps) -> Advanced -> Developer mode, then Create connector, paste the URL, choose No authentication, and save. Enable it from the "+" menu in any chat.

That's the whole install. (Render's free tier sleeps when idle, so the first request after a quiet spell takes 30-60 seconds to wake. Fly.io, below, stays warmer.)

What the Kindora MCP does

Kindora is a grant-discovery platform for nonprofits. Its MCP server is a read-only, free-tier service over public IRS 990 / 990-PF filings and Grants.gov opportunities, covering 174K+ US foundations, 32K+ European funders, and 43K+ open grants. The upstream server exposes ten tools across discovery, profile, financials, and reference categories. This wrapper mirrors the nine that matter for ChatGPT (it drops the upstream list_tools helper, which is redundant since MCP clients enumerate tools natively).

Tool Purpose
search_funders Find grantmakers by name, cause area, or location
search_open_grants Find open opportunities / RFPs by topic (foundation + government)
search_funder_jobs Find open philanthropy jobs at foundations
get_funder_profile Detailed profile for one foundation (by EIN)
get_990_summary IRS 990 financial summary and trends (by EIN)
get_foundation_grants Individual grants a foundation has made (by EIN)
get_funder_stats Aggregate giving statistics (by EIN)
get_ntee_codes Browse/search NTEE cause-area codes
health_check Upstream health probe

All tools are annotated readOnlyHint: true, so ChatGPT runs them without write-confirmation prompts.

Why wrap it instead of pointing ChatGPT at Kindora directly?

ChatGPT Developer mode can connect to any remote MCP server, so a wrapper is optional. It earns its place when you want one endpoint you control: curated tool descriptions, read-only annotations, a place to add auth / rate limiting / logging, header injection for a Kindora key, or to pin a specific upstream URL. If you want none of that, you can skip this and add https://mcp.kindora.co/mcp to ChatGPT directly.

Repository contents

.
├── server.py            # the MCP server (all nine tools)
├── requirements.txt     # runtime dependency (fastmcp)
├── pyproject.toml        # packaging + pytest config
├── test_server.py        # offline tests (no network needed)
├── Dockerfile            # container image for hosting
├── fly.toml              # one-command deploy to Fly.io
├── render.yaml           # one-click deploy to Render
├── .env.example          # configuration reference
├── .github/workflows/    # CI (runs the tests)
├── LICENSE               # MIT
└── README.md

Requirements

  • Python 3.10+
  • A way to host a public HTTPS URL if you want to use it with ChatGPT (Docker + any host, or the included Fly/Render configs).

Get the code

git clone https://github.com/wayanvota/kindora-chatgpt-mcp.git
cd kindora-chatgpt-mcp
pip install -r requirements.txt

Run locally (stdio)

python server.py

Use this for local testing or to add the server to a stdio MCP client (e.g. Claude Desktop).

Run the tests

pip install -e ".[dev]"
pytest

The suite is offline: it checks tool registration, the read-only annotations, and the upstream-response normalization with a stubbed client. It does not make a live call to Kindora.

Run as a public HTTP endpoint (required for ChatGPT)

ChatGPT connects to a publicly reachable HTTPS URL, so the server must run with the streamable-HTTP transport behind a public host.

TRANSPORT=http HOST=0.0.0.0 PORT=8000 python server.py
# serves MCP at http://<host>:8000/mcp

Or with Docker:

docker build -t kindora-chatgpt-mcp .
docker run -p 8000:8000 kindora-chatgpt-mcp

Put it behind TLS (a reverse proxy, or a platform like Fly.io / Render / Railway / Cloud Run) so the final URL is https://your-domain/mcp.

One-click hosting

This repo ships configs for two free-tier hosts that give you a public HTTPS URL:

Fly.io (fly.toml):

fly launch --no-deploy --copy-config --name <your-app>
fly deploy
# URL: https://<your-app>.fly.dev/mcp

Render (render.yaml): push the repo to GitHub, then in Render choose New + -> Blueprint and pick the repo. URL: https://<service>.onrender.com/mcp.

Connect it to ChatGPT

  1. Enable Developer mode: Settings -> Connectors (Apps) -> Advanced -> Developer mode. (Available on Plus, Pro, Business, Enterprise, and Edu plans.)
  2. Connectors -> Create / Add custom connector.
  3. Enter your public URL, e.g. https://your-domain/mcp.
  4. Authentication: No authentication (this proxy and Kindora's free tier are open). Add OAuth here only if you put your own auth in front.
  5. Save, then enable the connector in a chat (the "+" / tools menu in the composer).

Developer mode does not require the search/fetch compatibility tools that ChatGPT's Deep Research connectors need; it accepts arbitrary named tools, which is why all nine Kindora tools are exposed directly.

Configuration

All via environment variables (see .env.example):

Variable Default Notes
TRANSPORT stdio http for ChatGPT
HOST 0.0.0.0 HTTP bind host
PORT 8000 HTTP port
MCP_PATH /mcp HTTP path
KINDORA_MCP_URL https://mcp.kindora.co/mcp Upstream to proxy
KINDORA_API_KEY (unset) Forwarded as Authorization: Bearer ... if set
KINDORA_TIMEOUT 60 Upstream call timeout (seconds)

Confirm the upstream URL against your Kindora connector listing. If Kindora moves the endpoint, set KINDORA_MCP_URL and nothing else changes.

Notes and limits

  • Read-only / public data. Nothing here writes. Data is public IRS 990 and Grants.gov.
  • Rate limits. Kindora's free tier is roughly 100 requests/hour for anonymous users; the proxy inherits that.
  • Country fields in grant data reflect the recipient's HQ country, not where program work is implemented.
  • Verify before publishing facts. Treat tool output as leads, not citations: confirm a foundation's current giving and open RFPs against the funder's own filings or site.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选