curl -X GET https://api.example.com/api/mcp/servers/mcp_abc123 \
-H "Authorization: Bearer YOUR_API_KEY"
const response = await fetch(
'https://api.example.com/api/mcp/servers/mcp_abc123',
{
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
}
}
);
const data = await response.json();
import requests
response = requests.get(
'https://api.example.com/api/mcp/servers/mcp_abc123',
headers={'Authorization': 'Bearer YOUR_API_KEY'}
)
data = response.json()
{
"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"
}
}
{
"success": false,
"message": "MCP server not found"
}
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"
const response = await fetch(
'https://api.example.com/api/mcp/servers/mcp_abc123',
{
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
}
}
);
const data = await response.json();
import requests
response = requests.get(
'https://api.example.com/api/mcp/servers/mcp_abc123',
headers={'Authorization': 'Bearer YOUR_API_KEY'}
)
data = response.json()
{
"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"
}
}
{
"success": false,
"message": "MCP server not found"
}
Path Parameters
string
required
MCP server ID
Response
boolean
Whether the request was successful
object
MCP server details
Show Server Object
Show Server Object
string
Unique server identifier
string
Associated project ID
string
Server name
string | null
Server description
string | null
Server URL
string
Transport type:
stdio, http, or ssestring
Connection type:
direct or proxystring | null
Command for stdio transport
string | null
Command arguments
string
Server status:
connecting, connected, disconnected, or errorobject | null
Server capabilities
object | null
Server implementation details
string | null
Last error message if any
string | null
ISO 8601 timestamp of last connection
string
ISO 8601 timestamp of creation
string
ISO 8601 timestamp of last update
curl -X GET https://api.example.com/api/mcp/servers/mcp_abc123 \
-H "Authorization: Bearer YOUR_API_KEY"
const response = await fetch(
'https://api.example.com/api/mcp/servers/mcp_abc123',
{
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
}
}
);
const data = await response.json();
import requests
response = requests.get(
'https://api.example.com/api/mcp/servers/mcp_abc123',
headers={'Authorization': 'Bearer YOUR_API_KEY'}
)
data = response.json()
{
"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"
}
}
{
"success": false,
"message": "MCP server not found"
}
⌘I

