FruxonDocs
IntegrationsMCP

Get MCP settings for an integration.

Returns the integration's MCP server configuration: whether it is `enabled`, which integration `configId` backs production calls, the `exposedToolIds` list that filters which tools the MCP server advertises, and the `apiKeyId` used to authenticate inbound JSON-RPC traffic. If no MCP config exists for the integration one is created lazily with defaults, so this endpoint is safe to call before any configuration step.

GET
/v1/tenants/{tenant}/integrations/{integration}/mcp
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

integration*string

The integration ID.

tenant*string

The tenant identifier

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/integrations/string/mcp"
{
  "integrationId": "string",
  "enabled": false,
  "configId": "00000000-0000-0000-0000-000000000000",
  "exposedToolIds": [
    "string"
  ],
  "description": "string",
  "apiKeyId": "00000000-0000-0000-0000-000000000000",
  "callUrl": "string",
  "testUrl": "string",
  "createdAt": 0,
  "modifiedAt": 0,
  "keyPrefix": "string",
  "apiKey": "string"
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}