How to Use the GivingFuel MCP in LangChain
Chain GivingFuel data directly into your LangChain pipelines for automated donor management and real-time fundraising insights.
Works with every AI agent you already use
…and any MCP-compatible client
Connect GivingFuel MCP to LangChain
Create your Vinkius account to connect GivingFuel to LangChain and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Build automated chains with GivingFuel data
Feed your LangChain agents raw data from `list_donation_orders` to trigger downstream actions. You can process specific transactions as they hit your system, ensuring your logic follows the exact flow of funds. Connect these results to other vector stores or databases within your chain. By piping outputs from `list_recent_donations` directly into your next task, you remove manual steps and keep your workflow strictly code-driven.
Monitor your MCP Server with LangSmith
Track every tool call from your MCP Server using native LangSmith tracing. You'll see exactly how your agent handles inputs from `list_financial_transactions` and where your logic might bottleneck. This visibility lets you debug complex multi-step reasoning chains. If an agent fails to parse a donor record from `list_crm_contacts`, you have the full input/output logs to fix it immediately.
Execute multi-step fundraising workflows
Orchestrate complex logic by combining multiple tools in a single ReAct loop. Your agent can call `list_fundraising_pages` first, then decide to query `list_peer_campaigns` based on the active event status. This approach lets the agent determine the order of operations based on real-time data. You define the constraints, and the agent handles the heavy lifting of calling the right endpoints when needed.
Set up GivingFuel MCP in LangChain
Prerequisites
- Python 3.10+ installed
-
langchain-mcp-adapters+langgraphpackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install langchain-mcp-adapters langgraph langchain-openai. The MCP adapters package converts MCP tools into native LangChainBaseToolobjects. - 2
Connect via HTTP transport
Use
MultiServerMCPClientwith"transport": "http"pointing to your Vinkius endpoint. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. - 3
Create a ReAct agent
Pass the discovered tools to
create_react_agent()from LangGraph. The agent automatically routes GivingFuel tool calls through the MCP protocol. - 4
Run with any LLM
Swap
ChatOpenAIforChatAnthropic,ChatGoogleGenerativeAI, or any LangChain-compatible model. The MCP tools work identically across all providers.
from langchain_mcp_adapters.client import MultiServerMCPClient
from langgraph.prebuilt import create_react_agent
from langchain_openai import ChatOpenAI
async with MultiServerMCPClient({
"givingfuel-mcp": {
"transport": "http",
"url": "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp",
}
}) as client:
tools = client.get_tools()
agent = create_react_agent(
ChatOpenAI(model="gpt-4o"),
tools,
)
result = await agent.ainvoke({
"messages": "List recent GivingFuel transactions"
})
print(result["messages"][-1].content) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by GivingFuel. 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 GivingFuel MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the GivingFuel MCP today
We host it, we monitor it, we maintain it. You just paste one token.