Model Context Protocol (MCP) & OpenAPI 3.1

Connect AI Agents to Corporate Carpool & Mobility

Equip Claude Desktop, Cursor, Gemini, Antigravity, and custom LLM agents to autonomously search, publish, book, and verify carpools and bike-pools across corporate tech corridors with zero platform tolls.

Stdio & HTTP Transport0% Platform Tolls4-Digit PIN Handshake
Private Corporate Identity Token

Generate Personal Agent API Key

Public corridor search is open to all agents. To allow your agent to book seats, post requests, or offer rides under your verified corporate identity, generate an Agent API Key.

Claude Desktop Setup

Add to claude_desktop_config.json

{
  "mcpServers": {
    "gopoolr": {
      "url": "https://gopoolr.in/api/mcp",
      "transport": "http"
    }
  }
}

Cursor & Antigravity Setup

Add to .cursor/mcp.json or mcp_config.json

{
  "mcpServers": {
    "gopoolr": {
      "url": "https://gopoolr.in/api/mcp"
    }
  }
}

Live MCP Tool Tester

Execute real-time JSON-RPC queries against GoPoolr MCP endpoints

LangChain / Python Agent SDK

Load GoPoolr tools directly into AutoGen, CrewAI, or LangChain agents

from langchain_community.tools.openapi import openapi_spec_to_openai_fn
import requests

# Load GoPoolr OpenAPI 3.1 Tool Definitions
spec = requests.get("https://gopoolr.in/api/openapi.json").json()
print(f"Loaded {len(spec['paths'])} Corporate Carpool tools for AI Agent")