curl -X GET https://api.example.com/api/mcp/servers/mcp_abc123 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true,
"server": {
"id": "mcp_abc123",
"projectId": "proj_123",
"name": "Production Server",
"description": "Main production MCP server",
"url": "https://mcp-server.example.com",
"transportType": "http",
"connectionType": "proxy",
"command": null,
"args": null,
"status": "connected",
"capabilities": {
"tools": true,
"resources": true,
"prompts": true
},
"serverImplementation": {
"name": "Example MCP",
"version": "1.0.0"
},
"lastError": null,
"lastConnectedAt": "2026-01-17T10:30:00Z",
"createdAt": "2026-01-01T00:00:00Z",
"updatedAt": "2026-01-17T10:30:00Z"
}
}
Server Management
Get MCP Server
Retrieves detailed information about a specific MCP server
GET
/
api
/
mcp
/
servers
/
{id}
curl -X GET https://api.example.com/api/mcp/servers/mcp_abc123 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true,
"server": {
"id": "mcp_abc123",
"projectId": "proj_123",
"name": "Production Server",
"description": "Main production MCP server",
"url": "https://mcp-server.example.com",
"transportType": "http",
"connectionType": "proxy",
"command": null,
"args": null,
"status": "connected",
"capabilities": {
"tools": true,
"resources": true,
"prompts": true
},
"serverImplementation": {
"name": "Example MCP",
"version": "1.0.0"
},
"lastError": null,
"lastConnectedAt": "2026-01-17T10:30:00Z",
"createdAt": "2026-01-01T00:00:00Z",
"updatedAt": "2026-01-17T10:30:00Z"
}
}
Path Parameters
MCP server ID
Response
Whether the request was successful
MCP server details
Show Server Object
Show Server Object
Unique server identifier
Associated project ID
Server name
Server description
Server URL
Transport type:
stdio, http, or sseConnection type:
direct or proxyCommand for stdio transport
Command arguments
Server status:
connecting, connected, disconnected, or errorServer capabilities
Server implementation details
Last error message if any
ISO 8601 timestamp of last connection
ISO 8601 timestamp of creation
ISO 8601 timestamp of last update
curl -X GET https://api.example.com/api/mcp/servers/mcp_abc123 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true,
"server": {
"id": "mcp_abc123",
"projectId": "proj_123",
"name": "Production Server",
"description": "Main production MCP server",
"url": "https://mcp-server.example.com",
"transportType": "http",
"connectionType": "proxy",
"command": null,
"args": null,
"status": "connected",
"capabilities": {
"tools": true,
"resources": true,
"prompts": true
},
"serverImplementation": {
"name": "Example MCP",
"version": "1.0.0"
},
"lastError": null,
"lastConnectedAt": "2026-01-17T10:30:00Z",
"createdAt": "2026-01-01T00:00:00Z",
"updatedAt": "2026-01-17T10:30:00Z"
}
}
⌘I

