ORCHEO.AI MCP Gateway

Serverless Model Context Protocol Gateway for tool discovery and invocation

Gateway Operational

API Endpoints

GET /api/healthHealth Check
GET /api/mcp/discoverTool Discovery
POST /api/mcp/searchSemantic Search
GET /api/mcp/tools/:idTool Details
POST /api/mcp/invoke/:tool/:methodTool Invocation

Authentication

JWT Bearer Token

Authorization: Bearer <jwt_token>

API Key

X-API-Key: <your_api_key>

Quick Start

1. Discover Available Tools

curl -X GET "https://gateway.orcheo.ai/api/mcp/discover" \
  -H "Authorization: Bearer <your_jwt_token>"

2. Search for Specific Tools

curl -X POST "https://gateway.orcheo.ai/api/mcp/search" \
  -H "Authorization: Bearer <your_jwt_token>" \
  -H "Content-Type: application/json" \
  -d '{"query": "data processing", "limit": 10}'

3. Get Tool Details

curl -X GET "https://gateway.orcheo.ai/api/mcp/tools/<tool_id>" \
  -H "Authorization: Bearer <your_jwt_token>"

Need Help?

Check out our comprehensive documentation and API reference.