Skip to main content
GET
/
admin
/
api
/
v1
/
mcp-servers
/
{mcp_id}
Get Mcp Server
curl --request GET \
  --url https://api.example.com/admin/api/v1/mcp-servers/{mcp_id}
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "slug": "<string>",
  "name": "<string>",
  "enabled": true,
  "mcpServer": {
    "name": "<string>",
    "transport": "streamable_http",
    "url": "<string>",
    "command": "<string>",
    "args": [
      "<string>"
    ],
    "headers": {},
    "env": {},
    "cwd": "<string>",
    "encoding": "<string>",
    "timeoutSeconds": 123,
    "sseReadTimeoutSeconds": 123,
    "terminateOnClose": true,
    "sessionKwargs": {}
  },
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.idun-group.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

mcp_id
string<uuid>
required

Response

Successful Response

GET response and the data payload of POST/PATCH/DELETE responses.

id
string<uuid>
required
slug
string
required
name
string
required
enabled
boolean
required
mcpServer
MCPServer · object
required

Configuration for a single MCP server connection.

createdAt
string<date-time>
required
updatedAt
string<date-time>
required
Last modified on May 22, 2026