Kindora-for-ChatGPT MCP server
This server acts as a proxy to Kindora's grant discovery platform, enabling research on foundations, funders, open grants, and philanthropy jobs within ChatGPT using public IRS 990 and Grants.gov data.
Search for grantmakers (
search_funders): Find grantmaking organizations by name, cause area, location, assets, funder type, NTEE code, or country — covering 174K+ US foundations and 32K+ European funders.Search open grant opportunities (
search_open_grants): Discover open grants and RFPs across 172K+ foundation programs and federal Grants.gov listings, with filters for topic, deadline, award size, state, agency, and source.Search philanthropy jobs (
search_funder_jobs): Find open jobs at grantmaking foundations by keyword, location, role category, remote status, or specific funder.Get funder profiles (
get_funder_profile): Retrieve detailed profiles for a specific foundation by EIN, including legal name, location, financials, leadership, and website.Get IRS 990 financial summaries (
get_990_summary): Access 990/990-PF financial summaries and year-over-year trends (revenue, assets, grants paid) for up to 10 years of filings.List individual grants (
get_foundation_grants): View grants a foundation has made from its 990-PF filings, filterable by year, recipient location, NTEE code, or grant purpose keyword.Get aggregate giving statistics (
get_funder_stats): Retrieve lifetime totals, average/median grant sizes, top focus areas, and geographic distribution of giving for a foundation.Browse NTEE codes (
get_ntee_codes): Look up or search NTEE nonprofit cause-area classification codes for use as filters in other tools.Health check (
health_check): Verify that the upstream Kindora service is reachable and operational.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Kindora-for-ChatGPT MCP serverFind foundations that fund environmental causes."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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.
Click the button, sign in to Render with GitHub, and approve. Render reads
render.yamland builds the container. First deploy takes ~2 minutes.Copy the service URL Render gives you and add
/mcpto the end, e.g.https://kindora-chatgpt-mcp.onrender.com/mcp.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.)
Related MCP server: Personal Assistant MCP Server
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 |
| Find grantmakers by name, cause area, or location |
| Find open opportunities / RFPs by topic (foundation + government) |
| Find open philanthropy jobs at foundations |
| Detailed profile for one foundation (by EIN) |
| IRS 990 financial summary and trends (by EIN) |
| Individual grants a foundation has made (by EIN) |
| Aggregate giving statistics (by EIN) |
| Browse/search NTEE cause-area codes |
| 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://kindora-mcp.azurewebsites.net/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.mdRequirements
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.txtRun locally (stdio)
python server.pyUse 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]"
pytestThe 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/mcpOr with Docker:
docker build -t kindora-chatgpt-mcp .
docker run -p 8000:8000 kindora-chatgpt-mcpPut 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/mcpRender (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
Enable Developer mode: Settings -> Connectors (Apps) -> Advanced -> Developer mode. (Available on Plus, Pro, Business, Enterprise, and Edu plans.)
Connectors -> Create / Add custom connector.
Enter your public URL, e.g.
https://your-domain/mcp.Authentication: No authentication (this proxy and Kindora's free tier are open). Add OAuth here only if you put your own auth in front.
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 |
|
|
|
|
| HTTP bind host |
|
| HTTP port |
|
| HTTP path |
|
| Upstream to proxy |
| (unset) | Forwarded as |
|
| Upstream call timeout (seconds) |
Confirm the upstream URL against your Kindora connector listing. If Kindora moves the endpoint, set
KINDORA_MCP_URLand 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.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wayanvota/kindora-chatgpt-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server