Charity MCP Server

A comprehensive [Model Context Protocol (MCP)](https://modelcontextprotocol.io) server that provides AI assistants with enterprise-grade access to

Local serverstdioTypeScript

What is the Charity MCP server?

If you already use Charity, the charity mcp server is the piece that lets your assistant work with it directly. A comprehensive Model Context Protocol (MCP) server that provides AI assistants with enterprise-grade access to charity and nonprofit organization data from the IRS database. This feature-complete server.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Real — time charity information lookup
  • Tax — deductible status verification
  • Prerequisites — The Prerequisites tool exposed by this server
  • Installation — 1. Clone the repository bash git clone cd charity-mcp-server
  • Architecture — 1. MCP Layer: Handles protocol communication and tool registration 2. Validation Layer: Input sanitization and validation with Zod schemas 3

Installation

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Credentials and setup notes

Configuration is passed through the environment: CHARITY_API_KEY, CHARITY_API_BASE_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js 18+ - npm or yarn - CharityAPI account and API key

Where it fits

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Charity's toolset — Real, Tax, Prerequisites and 2 more — is a fair guide to whether it matches your workflow. It is maintained by briancasteel; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
Realtime charity information lookup
Taxdeductible status verification
PrerequisitesThe Prerequisites tool exposed by this server.
Installation1. **Clone the repository** bash git clone <repository-url> cd charity-mcp-server
Architecture1. **MCP Layer**: Handles protocol communication and tool registration 2. **Validation Layer**: Input sanitization and validation with Zod schemas 3. **Service Layer**: External API communication with rate limiting 4. **

How to install the Charity MCP server

{
  "mcpServers": {
    "charity-server": {
      "command": "node",
      "args": ["path/to/charity-mcp-server/build/index.js"],
      "env": {
        "CHARITY_API_KEY": "your_api_key_here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js 18+ - npm or yarn - CharityAPI account and API key
VariableDescriptionRequired
CHARITY_API_KEYCredential the server authenticates with.Yes
CHARITY_API_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Charity to Real.
  • Use Charity to Tax.
  • Use Charity to Prerequisites.

Frequently asked questions

It connects Charity to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (Real, Tax, Prerequisites, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Charity directly.