How to Use the Charity Navigator MCP in CrewAI
Deploy autonomous research teams in CrewAI with this MCP Server to investigate nonprofits, analyze financial health, and monitor warnings.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Charity Navigator MCP to CrewAI
Create your Vinkius account to connect Charity Navigator to CrewAI and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Assign research tasks to this MCP Server
The `search_charities` tool gives your scout agent the ability to hunt down organizations by keyword, state, and size. You tell the scout to find highly rated environmental groups, and it handles the pagination up to 1000 records per page. Once the scout compiles a list of EINs, it passes that context to the next agent in your hierarchy. The multi-agent system shares this memory natively, so your analyst agent knows exactly which nonprofits to investigate further.
Delegate financial history analysis
Your analyst agent uses the `get_charity_ratings` tool to pull historical accountability and transparency scores. It looks at how a specific charity's financial health has trended over multiple years. The agent synthesizes these raw metrics into a readable brief. Because CrewAI supports specialized roles, this financial analysis happens concurrently while another agent checks for operational red flags.
Monitor entire sectors for advisories
Running the `get_all_advisories` tool returns every single organization currently flagged for governance or operational concerns. Your monitor agent runs this on a schedule to watch for newly issued warnings. If a previously clean charity suddenly appears on the advisory list, the monitor agent escalates the issue. A separate moderator agent can then automatically draft an alert to your compliance team.
Set up Charity Navigator MCP in CrewAI
Prerequisites
- Python 3.10+ installed
-
crewaipackage (pip install crewai) - Active Vinkius subscription with a valid endpoint token
- 1
Install CrewAI
Run
pip install crewaito install the framework. MCP support is built-in via themcpsparameter. - 2
Add the MCP URL to your agent
Pass your Vinkius endpoint directly to the
mcpslist. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. CrewAI handles tool discovery and caching automatically. - 3
Kick off your crew
Create a
Crewwith your agent and tasks. Callcrew.kickoff()— the agent will automatically invoke Charity Navigator tools as needed.
from crewai import Agent, Task, Crew
agent = Agent(
role="Charity Navigator Analyst",
goal="Access and analyze Charity Navigator data via MCP.",
backstory="Expert analyst with direct Charity Navigator access.",
mcps=[
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
],
)
task = Task(
description="List recent Charity Navigator transactions",
agent=agent,
expected_output="A summary of recent activity",
)
crew = Crew(agents=[agent], tasks=[task])
result = crew.kickoff()
print(result) Prerequisites
- Python 3.10+ installed
-
crewai+crewai-toolspackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install crewai crewai-tools. TheMCPServerAdapterhandles lifecycle management and tool conversion. - 2
Connect with MCPServerAdapter
Use
MCPServerAdapteras a context manager withSseServerParameterspointing to your Vinkius endpoint. The adapter automatically manages connection lifecycle. - 3
Assign tools and run
Pass the returned
mcp_toolsto your agent'stoolsparameter. The adapter converts MCP tools to nativeBaseToolobjects compatible with all CrewAI agents.
from crewai import Agent, Task, Crew
from crewai_tools import MCPServerAdapter
from mcp import SseServerParameters
server_params = SseServerParameters(
url="https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
)
with MCPServerAdapter(server_params) as mcp_tools:
agent = Agent(
role="Charity Navigator Analyst",
goal="Access and analyze Charity Navigator data via MCP.",
backstory="Expert analyst with direct Charity Navigator access.",
tools=mcp_tools,
)
task = Task(
description="List recent Charity Navigator transactions",
agent=agent,
expected_output="A summary of recent activity",
)
crew = Crew(agents=[agent], tasks=[task])
result = crew.kickoff()
print(result) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Charity Navigator. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about Charity Navigator MCP in CrewAI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Charity Navigator MCP today
We host it, we monitor it, we maintain it. You just paste one token.