How to Use the Mato Grosso do Sul Open Data MCP in OpenAI Agents SDK
Deploy production-ready OpenAI Agents SDK setups that query Mato Grosso do Sul public records using this MCP Server.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Mato Grosso do Sul Open Data MCP to OpenAI Agents SDK
Create your Vinkius account to connect Mato Grosso do Sul Open Data 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.
Querying Public SQL Databases via OpenAI Agents SDK
The `datastore_search_sql` tool lets your agent write and run SQL queries against Brazilian state databases directly from your Python runtime. This means your agent isn't just guessing or scraping raw files; it executes precise SQL queries to extract exact columns from the public datastore. You initiate the connection using `MCPServerStreamableHttp` within your agent pipeline. The agent uses `list_packages` to discover what datasets are online, then targets specific tables without pulling megabytes of junk data over the wire.
Direct Dataset Discovery and Metadata Extraction
The `list_packages` and `get_package` tools give your agent the ability to map out the entire Mato Grosso do Sul data catalog in real time. Instead of hardcoding URLs, your agent queries the CKAN API dynamically to find newly updated public records. By passing this MCP Server into the `mcp_servers` list of your Agent constructor, these tools are auto-discovered immediately. The agent inspects groups via `list_groups` to categorize the state's public spending or environmental records before running deeper analysis.
Granular Resource Inspection and Search
The `get_resource` and `datastore_search` tools allow your agent to zoom in on specific files and search their contents row by row. This ensures your agent grabs only the relevant slices of data instead of downloading massive, raw CSV files. Using the OpenAI Agents SDK, you can set `cacheToolsList=True` to keep tool definitions cached for fast execution. This MCP Server setup keeps your agent fast when jumping from `list_organizations` to deep resource searches inside the state's databases.
Set up Mato Grosso do Sul Open Data 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 Mato Grosso do Sul Open Data tools at runtime. - 3
Create your Agent
Pass the MCP to
Agent(mcp_servers=[server]). The agent receives Mato Grosso do Sul Open Data tools as native definitions — JSON schemas resolve automatically. - 4
Run the agent
Call
Runner.run(agent, prompt)to execute. The agent invokes the appropriate Mato Grosso do Sul Open Data 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="Mato Grosso do Sul Open Data Agent",
instructions="You have access to Mato Grosso do Sul Open Data 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 Mato Grosso do Sul Dados Abertos. 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 Mato Grosso do Sul Open Data 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 Mato Grosso do Sul Open Data MCP today
We host it, we monitor it, we maintain it. You just paste one token.