nonprofit-explorer-mcp-server
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., "@nonprofit-explorer-mcp-serversearch for food banks in Texas"
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.
Public Hosted Server: https://nonprofit-explorer.caseyjhand.com/mcp
Tools
3 tools for working with US nonprofit and IRS Form 990 data:
Tool | Description |
| Search 1.8M+ IRS-recognized tax-exempt organizations by name, keyword, city, or phrase with optional state, NTEE sector, and 501(c) filters |
| Full profile for one org by EIN: legal identity, IRS classification, ruling date, and a financial snapshot from the most recent Form 990 |
| All Form 990 filings for an org by EIN: year-by-year financials, program-expense ratio, executive compensation, and source PDF/XML links |
nonprofit_search
Search for tax-exempt organizations across the IRS Nonprofit Explorer dataset.
Full-text search across org name, alternate name, and city with relevance ranking
Supports quoted phrases (
"Red Cross"), required terms (+evanston), excluded terms (-dental)Filter by US state (two-letter abbreviation;
ZZfor foreign entities)Filter by NTEE major sector (Arts, Education, Health, Human Services, etc., 1–10)
Filter by 501(c) subsection code (e.g.,
3= public charity,4= social welfare)Paginated at 25 per page; use
page(zero-indexed) andnum_pagesto walk large result setsAPI caps total results at 10,000;
total_results === 10000means the actual count may be higherReturns EINs — pass to
nonprofit_get_organizationornonprofit_get_filingsfor details
nonprofit_get_organization
Fetch the full profile for a single tax-exempt org by EIN.
Accepts EIN as integer (
530196605) or string with or without hyphen ("53-0196605")Returns legal name, address, NTEE code, 501(c) type, and IRS ruling date
Financial snapshot from the most recent Form 990: revenue, expenses, assets, liabilities, net assets
Includes source 990 PDF link and IRS Business Master File summary figures
filing_countshows how many filings with extracted data are on recordData lags 1–2 years;
tax_prd_yrin the snapshot is the fiscal year of the filing, not the current yearUse
nonprofit_searchfirst if you only have an org name
nonprofit_get_filings
Fetch the full filing history for an org by EIN.
All Form 990 filings with extracted financial data, sorted newest first
Per-filing: revenue, expenses, assets, liabilities, net assets, revenue breakdown (contributions, program service, investment income)
Program-expense ratio computed from 990 inputs with the full breakdown shown (officer comp, other salaries, fundraising); not available for 990-PF
Executive compensation summary with field-name transparency and a note pointing to Schedule J for per-officer detail
Source 990 PDF and XML links per filing
filings_pdf_onlylists older filings with a PDF but no extracted dataData lags 1–2 years; always cite
tax_prd_yr(fiscal year) when presenting figures
Related MCP server: propublica-npo-mcp
Features
Built on @cyanheads/mcp-ts-core:
Declarative tool definitions — single file per tool, framework handles registration and validation
Unified error handling — handlers throw, framework catches, classifies, and formats
Pluggable auth:
none,jwt,oauthSwappable storage backends:
in-memory,filesystem,Supabase,Cloudflare KV/R2/D1Structured logging with optional OpenTelemetry tracing
STDIO and Streamable HTTP transports
ProPublica Nonprofit Explorer / IRS-specific:
Keyless access — ProPublica Nonprofit Explorer API requires no API key
Covers 1.8M+ IRS-recognized tax-exempt organizations
IRS Form 990 data: annual filings for public charities (990), small orgs (990-EZ), and private foundations (990-PF)
Source filing links (PDF and XML) on every filing record
Data sourced from ProPublica Nonprofit Explorer, derived from IRS Form 990 filings; data lags 1–2 years
Agent-friendly output:
Provenance on every response —
data_sourceattribution on all tool outputs, ProPublica URL for direct verificationFiling-year clarity —
tax_prd_yrprominently labeled as fiscal year with explicit lag caveat in every financial responseProgram-expense ratio with inputs — ratio is accompanied by the full expense breakdown so agents and users can verify the computation
Field-name transparency on compensation —
field_nameandform_typeexposed so agents know exactly which IRS field was read
Getting started
Public Hosted Instance
A public instance is available at https://nonprofit-explorer.caseyjhand.com/mcp — no installation required. Point any MCP client at it via Streamable HTTP, with this client config:
{
"mcpServers": {
"nonprofit-explorer-mcp-server": {
"type": "streamable-http",
"url": "https://nonprofit-explorer.caseyjhand.com/mcp"
}
}
}Or, install locally and add the following to your MCP client configuration file.
{
"mcpServers": {
"nonprofit-explorer-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/nonprofit-explorer-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Or with npx (no Bun required):
{
"mcpServers": {
"nonprofit-explorer-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/nonprofit-explorer-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Or with Docker:
{
"mcpServers": {
"nonprofit-explorer-mcp-server": {
"type": "stdio",
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "MCP_TRANSPORT_TYPE=stdio",
"ghcr.io/cyanheads/nonprofit-explorer-mcp-server:latest"
]
}
}
}For Streamable HTTP, set the transport and start the server:
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
# Server listens at http://localhost:3010/mcpPrerequisites
Bun v1.3.11 or higher (or Node.js v24+).
No API key required — ProPublica Nonprofit Explorer is a keyless public API.
Installation
Clone the repository:
git clone https://github.com/cyanheads/nonprofit-explorer-mcp-server.gitNavigate into the directory:
cd nonprofit-explorer-mcp-serverInstall dependencies:
bun installConfigure environment:
cp .env.example .env
# edit .env as needed (no required vars — server works out of the box)Configuration
All configuration is validated at startup. Key environment variables:
Variable | Description | Default |
| Transport: |
|
| HTTP server port |
|
| HTTP server hostname |
|
| HTTP endpoint path |
|
| Public origin override for TLS-terminating reverse-proxy deployments | — |
| Authentication: |
|
| Log level ( |
|
| Directory for log files (Node.js only) |
|
| Storage backend: |
|
|
|
No server-specific required variables. ProPublica Nonprofit Explorer is a keyless public API.
See .env.example for the full list of optional overrides.
Running the server
Local development
Build and run:
# One-time build bun run rebuild # Run the built server bun run start:stdio # or bun run start:httpRun checks and tests:
bun run devcheck # Lint, format, typecheck, security bun run test # Vitest test suite bun run lint:mcp # Validate MCP definitions against spec
Docker
docker build -t nonprofit-explorer-mcp-server .
docker run --rm -p 3010:3010 nonprofit-explorer-mcp-serverThe Dockerfile defaults to HTTP transport, stateless session mode, and logs to /var/log/nonprofit-explorer-mcp-server. OpenTelemetry peer dependencies are installed by default — build with --build-arg OTEL_ENABLED=false to omit them.
Project structure
Directory | Purpose |
|
|
| Tool definitions ( |
| ProPublica Nonprofit Explorer API client and domain types. |
| Unit and integration tests mirroring |
Development guide
See CLAUDE.md/AGENTS.md for development guidelines and architectural rules. The short version:
Handlers throw, framework catches — no
try/catchin tool logicUse
ctx.logfor request-scoped logging,ctx.statefor tenant-scoped storageRegister new tools via the arrays in
createApp()insrc/index.tsWrap external API calls: validate raw → normalize to domain type → return output schema; never fabricate missing fields
Contributing
Issues and pull requests are welcome. Run checks and tests before submitting:
bun run devcheck
bun run testLicense
Apache-2.0 — see LICENSE for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceA Model Context Protocol (MCP) server that provides access to ProPublica's Nonprofit Explorer API, enabling AI models to search and analyze nonprofit organizations' Form 990 data for CRM integration and prospect research.Last updated1MIT
- AlicenseAqualityDmaintenanceProvides tools to search and retrieve nonprofit organization data and IRS filing summaries from ProPublica's Nonprofit Explorer, including side-by-side comparisons.Last updated4MIT

DataNexus MCPofficial
AlicenseAqualityAmaintenanceProvides AI-ready access to US/UK nonprofit data and OSS vulnerability intelligence via MCP, with 10 tools and no API key required.Last updated551163Inno Setup- Flicense-qualityCmaintenanceGiveRadar's MCP server gives AI agents verified data on 7 million+ nonprofits across 65+ countries, sourced from official government registries. Tools let agents search charities, verify a charity by registration number or EIN, compare integrity scores, and find similar organizations.Last updated
Related MCP Connectors
ProPublica Nonprofit MCP — ProPublica Nonprofit Explorer API (free, no auth)
Search, verify, and compare 8.7M+ charities from official government registries in 60+ countries.
OpenCorporates MCP — Global company registry data (free, no auth, rate limited)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/cyanheads/nonprofit-explorer-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server