How to Use the LA Metro MCP in Pydantic AI
Build type-safe Pydantic AI agents that validate real-time LA Metro transit telemetry at runtime to prevent silent failures.
Works with every AI agent you already use
…and any MCP-compatible client
Connect LA Metro MCP to Pydantic AI
Create your Vinkius account to connect LA Metro to Pydantic AI and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Type-safe transit tracking with Pydantic AI
Validating live fleet coordinates requires passing payloads from `get_bus_locations` and `get_rail_vehicle_positions` through strict type checks. If the transit API returns malformed GPS coordinates — which happens in tunnels constantly — your system catches it instantly. This strict validation extends to live fleet telemetry. By running `get_bus_vehicles`, your agent processes verified vehicle IDs, heading directions, and predictability indicators without risk of processing corrupt or unexpected payloads.
Guaranteed arrival predictions
Fetching guaranteed wait times requires querying `get_stop_predictions` and `get_rail_arrivals` directly. The framework guarantees that the output structure—including minutes, seconds, and confidence levels—conforms exactly to your defined models. This MCP Server safely pulls data from `get_service_alerts`. Because the alert schemas are strictly validated, your agent can parse alternative service recommendations without hallucinating non-existent routes.
Validated rail journey planning
Calculating transfer paths requires calling `get_rail_to_rail` and `get_rail_stations` to prevent routing errors. Pydantic AI ensures that station codes and transfer sequences are typed correctly throughout the routing pipeline. You can also query `get_bus_schedule` and `get_bus_stops` to build multi-modal routing engines. The framework validates every schedule sequence and geographic coordinate, ensuring your agent never recommends a physically impossible connection.
Set up LA Metro 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": {
"la-metro-mcp": {
"url": "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
}
}
})
agent = Agent(
"openai:gpt-4o",
toolsets=[toolset],
system_prompt="You have access to LA Metro tools.",
)
result = await agent.run("List recent LA Metro 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 LA Metro. 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 LA Metro MCP in Pydantic AI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the LA Metro MCP today
We host it, we monitor it, we maintain it. You just paste one token.