v1
latestOpenAPI 3.0.02026-07-26492143.5 KBMCP
Retrieve an MCP server
Return a single MCP server. The response populates allowed_tool_call_ids with the tool call IDs the caller is permitted to invoke on this server.
get/mcp/servers/{server_id}
Path parameters
server_idstring required
Identifier of the MCP server to retrieve.
Query parameters
team_idstring
Scope the lookup to a single team.
Response
The requested MCP server.
Example response
{
"server": {
"server_id": "gumloop_slack",
"name": "Slack",
"type": "gumcp_server",
"status": "connected",
"icon_url": "https://www.gumloop.com/icons/slack.png",
"description": "Send and read Slack messages.",
"gumloop_auth_url": "https://www.gumloop.com/oauth/connect/slack",
"tool_count": 12,
"allowed_tool_call_ids": [
"gumloop_slack__slack_send_message",
"gumloop_slack__slack_list_channels"
]
}
}