How to Use the SkootEco MCP in Pydantic AI
Type-Safe ESG Reporting with Pydantic AI. Guaranteed data integrity for compliance reports.
Works with every AI agent you already use
…and any MCP-compatible client
Connect SkootEco MCP to Pydantic AI
Create your Vinkius account to connect SkootEco to Pydantic AI — we handle the hosting, security, and runtime updates so you don't have to. No server setup required.
Key Capabilities
Validate and Log Emissions Data
Using the `add_emission` tool, you log every required piece of emission data. Because this MCP Server validates output against Pydantic models, you never get corrupted or unexpected fields—the agent fails loudly if the API sends bad data. This strict validation is crucial when calling tools like `get_emissions_by_category`, guaranteeing that the returned structure matches exactly what your code expects.
Generate Structured ESG Reports
Need a report? The agent executes `get_esg_report`. This tool pulls all necessary metrics and formats them into predictable, validated data structures. You won't have to write extra parsing code just because the API changed. You can also pull specific summary information with `get_summary_report` (via `get_report`), knowing the output schema is locked down.
Manage Offsets and Assets
The agent makes offset purchasing reliable. First, check options using `list_offsets`, then retrieve details with `get_offset`. The `purchase_offset` tool ensures that the transaction data returned is always valid and correct. Asset tracking works just as well; call `plant_tree` or use `get_tree_count` to track physical impact, all within a strongly typed framework.
Set up SkootEco MCP in Pydantic AI
Prerequisites
- Python 3.10+ installed
-
pydantic-ai-slim[fastmcp]package - Active Vinkius subscription with a valid endpoint token
- 1
Install Pydantic AI with FastMCP
Run
pip install "pydantic-ai-slim[fastmcp]". The FastMCP toolset replaces the deprecatedMCPServerHTTPclass with full protocol support. - 2
Configure the FastMCPToolset
Pass a JSON-style config dict to
FastMCPToolsetwith your Vinkius URL. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. Supports Streamable HTTP, SSE, and Stdio transports. - 3
Create and run your agent
Pass the toolset to
Agent(toolsets=[toolset])and callagent.run(). Swapopenai:gpt-4ofor any supported model — Anthropic, Google, Mistral, or Groq.
from pydantic_ai import Agent
from pydantic_ai.toolsets.fastmcp import FastMCPToolset
toolset = FastMCPToolset({
"mcpServers": {
"skooteco-mcp": {
"url": "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
}
}
})
agent = Agent(
"openai:gpt-4o",
toolsets=[toolset],
system_prompt="You have access to SkootEco tools.",
)
result = await agent.run("List recent SkootEco transactions")
print(result.output) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by SkootEco. 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 SkootEco MCP in Pydantic AI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the SkootEco MCP today
We host it, we monitor it, we maintain it. You just paste one token.