How to Use the Blackbaud MCP in LangChain
Run multi-step fundraising and school database operations directly from your LangChain reasoning loops.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Blackbaud MCP to LangChain
Create your Vinkius account to connect Blackbaud 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 multi-step donor pipelines with LangChain
Manage Blackbaud donor records directly in your LangChain workflows using `get_constituent` and `update_constituent`. This MCP Server lets your chains handle complex sequences like pulling a record and checking their history without manual intervention. Your LangChain agent decides which tool to run next based on the actual JSON payload returned from Blackbaud. If a donor moves, the chain catches the change, updates the CRM, and moves straight to processing any pending pledges.
Track donor actions with LangSmith observability
Stop guessing why a Blackbaud gift record failed to post inside your LangChain pipeline. Every tool call made by the client—whether running `create_gift` or reading academic tables—is tracked down to the millisecond inside your LangSmith dashboard. You see the exact input parameters, the API response, and the token cost for every Blackbaud transaction. It makes debugging failed `create_constituent` calls in LangChain simple because you can inspect the raw payload instantly.
Merge school and fundraising data in one chain
Pull live school-wide donation drives using `list_academic_sections` and `list_school_users` inside a single LangChain runnable. Combining these endpoints inside a single chain allows you to automate targeted outreach to parents. The LangChain agent handles the student lookup, matches the parents to Blackbaud profiles, and prepares the target list for your team. You get a fully automated pipeline that bridges your academic database and fundraising CRM.
Set up Blackbaud 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 Blackbaud 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({
"blackbaud-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 Blackbaud 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 Blackbaud. 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 Blackbaud MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Blackbaud MCP today
We host it, we monitor it, we maintain it. You just paste one token.