How to Use the InfoVetted MCP in OpenAI Agents SDK
Run safe background checks by giving your OpenAI Agents SDK direct access to automated candidate screening tools.
Works with every AI agent you already use
…and any MCP-compatible client
Connect InfoVetted MCP to OpenAI Agents SDK
Create your Vinkius account to connect InfoVetted 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.
Trigger background checks safely inside OpenAI Agents SDK
The `create_new_vetting_check` tool lets your production agent start candidate screenings without manual steps. By passing this MCP Server to your agent constructor, it gets instant access to `create_new_vetting_check` and `create_screening_contact`. You can validate these actions using the SDK's built-in guardrails before any criminal record searches or education verifications actually run. Writing custom integration code for every background check is a thing of the past. The agent auto-discovers the tools and can hand off the verification task to a specialized compliance agent. This agent can query `list_supported_check_types` to choose the correct screening level for each candidate's location.
Automate candidate tracking and group sorting
Managing your candidate pipeline is a mess when done manually. This MCP Server lets your agent run `create_contact_group` to segment applicants by department, like engineering or sales. Once the group is ready, the agent registers the candidate using `create_screening_contact` and adds them to the correct category without human intervention. The OpenAI dashboard traces every single tool call, showing you exactly when the agent grouped a contact or queried `get_contact_details`. Recruiters get complete transparency to audit the decision-making process of your hiring pipeline at any time.
Monitor screening status in real time
The `get_vetting_request_status` tool lets your agent monitor screening progress in real time. Your agent can poll `get_vetting_request_status` or inspect the list of active checks via `list_vetting_requests`. If a check hangs or takes too long, the agent can use `cancel_active_vetting` to stop the process before incurring extra costs. You can also inspect `list_configured_webhooks` to see how the platform notifies your system. The MCP integration handles these status checks in the background, keeping your recruitment database updated without relying on human polling.
Set up InfoVetted 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 InfoVetted tools at runtime. - 3
Create your Agent
Pass the MCP to
Agent(mcp_servers=[server]). The agent receives InfoVetted tools as native definitions — JSON schemas resolve automatically. - 4
Run the agent
Call
Runner.run(agent, prompt)to execute. The agent invokes the appropriate InfoVetted 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="InfoVetted Agent",
instructions="You have access to InfoVetted 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 InfoVetted. 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 InfoVetted 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 InfoVetted MCP today
We host it, we monitor it, we maintain it. You just paste one token.