How to Use the ChurchStamp MCP in OpenAI Agents SDK
Build production agents with the OpenAI Agents SDK to automate your ChurchStamp postcard campaigns and contact lists.
Works with every AI agent you already use
…and any MCP-compatible client
Connect ChurchStamp MCP to OpenAI Agents SDK
Create your Vinkius account to connect ChurchStamp to OpenAI Agents SDK and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Automate Mail Campaigns Safely
Your agent can create and manage entire postcard campaigns. It will use `create_campaign` to start a new mailing, then `list_contacts` to pull the recipient list. You can even have it check on progress with `get_campaign`. Because you're using the OpenAI Agents SDK, every action is validated before it runs. You can set up guardrails to prevent your agent from, say, sending a test campaign to your entire member list by accident. It's production-ready control.
Manage Contacts & Designs in Production
This MCP Server gives your agent direct access to your ChurchStamp contacts and postcard designs. Use `create_contact` to add new members to your mailing list or `list_designs` to see which templates are available before starting a campaign. With the SDK's agent handoff feature, you can have one agent specialize in contact management and another in campaign creation. They'll coordinate tasks, and you get a full trace of their actions in your OpenAI dashboard.
Connect Your OpenAI Agent to this MCP Server
Your agent will auto-discover all 10 ChurchStamp tools the moment you connect. It gets functions to `send_mail` for individual postcards, `list_campaigns` to report on outreach efforts, and even `check_churchstamp_status` to make sure the API is up. Setup is just a few lines of Python. You pass the Vinkius MCP Server endpoint to the `MCPServerStreamableHttp` constructor and add it to your agent. That's it. Your agent is now connected to ChurchStamp.
Set up ChurchStamp MCP in OpenAI Agents SDK
Prerequisites
- Python 3.10+ installed
-
openai-agentspackage (pip install openai-agents) - Active Vinkius subscription with a valid endpoint token
- 1
Install the SDK
Run
pip install openai-agentsto install the OpenAI Agents SDK. The MCP integration is built-in — no extra dependencies needed. - 2
Connect via SSE transport
Use
MCPServerSsewith your Vinkius endpoint URL. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. The SDK auto-discovers all ChurchStamp tools at runtime. - 3
Create your Agent
Pass the MCP to
Agent(mcp_servers=[server]). The agent receives ChurchStamp tools as native definitions — JSON schemas resolve automatically. - 4
Run the agent
Call
Runner.run(agent, prompt)to execute. The agent invokes the appropriate ChurchStamp tools and returns structured results. Copy the full example on the right to get started.
import asyncio
from agents import Agent, Runner
from agents.mcp import MCPServerSse
async def main():
async with MCPServerSse(
url="https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
) as server:
agent = Agent(
name="ChurchStamp Agent",
instructions="You have access to ChurchStamp tools.",
mcp_servers=[server],
)
result = await Runner.run(agent, "List recent transactions")
print(result.final_output)
asyncio.run(main()) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by ChurchStamp. 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 ChurchStamp MCP in OpenAI Agents SDK
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the ChurchStamp MCP today
We host it, we monitor it, we maintain it. You just paste one token.