How to Use the GatherUp MCP in OpenAI Agents SDK
Connect your OpenAI Agent to GatherUp and automate review management with built-in safety checks and full tracing.
Works with every AI agent you already use
…and any MCP-compatible client
Connect GatherUp MCP to OpenAI Agents SDK
Create your Vinkius account to connect GatherUp 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 Review Outreach Safely
This server exposes a `send_review_invite` tool for your agent. You can use it to ask for reviews after a customer interaction. The difference is OpenAI's built-in guardrails, which let you programmatically approve or deny the agent's action before it runs. That means your agent can propose sending invites to everyone it finds with `list_customer_contacts`, but you hold the final say. It’s the safe way to automate outreach without the risk of your agent going rogue and spamming your entire customer base.
Triage Feedback with Specialist Agents
Give one agent the job of monitoring reviews with `list_online_reviews`. When it finds a negative review, it can hand the task off to a second, specialized agent whose only job is to respond using `reply_to_online_review`. This is a solid pattern for building production systems. OpenAI's framework manages the state transfer between agents. You get a clean separation of concerns: one agent for monitoring, another for acting. It’s just a smarter way to work.
Trace Every Action in your OpenAI Dashboard
When your agent uses a tool from this MCP Server, the entire transaction is logged. You'll see the inputs, the outputs, and which agent took the action. It gives you a complete audit trail for every customer you sync with `add_new_customer` or every piece of feedback you address. For a production system, this isn't optional—it's a requirement. You get full visibility into what your agents are doing on your behalf, directly within the OpenAI platform. No extra setup needed.
Set up GatherUp 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 GatherUp tools at runtime. - 3
Create your Agent
Pass the MCP to
Agent(mcp_servers=[server]). The agent receives GatherUp tools as native definitions — JSON schemas resolve automatically. - 4
Run the agent
Call
Runner.run(agent, prompt)to execute. The agent invokes the appropriate GatherUp 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="GatherUp Agent",
instructions="You have access to GatherUp 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 GatherUp. 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 GatherUp 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 GatherUp MCP today
We host it, we monitor it, we maintain it. You just paste one token.