v46

latestOpenAPI 3.0.0MITraw.githubusercontent.com2026-08-0311978417.1 KB
Tools

List available MCP server views.

Retrieves a list of enabled MCP server views (aka tools) for a specific space of the authenticated workspace.

get/api/v1/w/{wId}/spaces/{spaceId}/mcp_server_views

Path parameters

wIdstring required

Unique string identifier for the workspace

spaceIdstring required

ID of the space

Response

MCP server views of the space

Example response

{
  "spaces": [
    {
      "id": 123,
      "sId": "mcp_sv_abc123",
      "name": "My Custom MCP Server",
      "description": "This MCP server handles customer data operations",
      "createdAt": 1625097600,
      "updatedAt": 1625184000,
      "spaceId": "spc_xyz789",
      "serverType": "remote",
      "server": {
        "sId": "mcp_srv_def456",
        "name": "Customer Data Server",
        "version": "1.0.0",
        "description": "Handles customer data operations and queries",
        "icon": "database",
        "authorization": {
          "provider": "github",
          "supported_use_cases": [
            "platform_actions"
          ],
          "scope": "repo:read"
        },
        "tools": [
          {
            "name": "query_customers",
            "description": "Query customer database for information",
            "inputSchema": {
              "type": "object",
              "properties": {
                "customerId": {
                  "type": "string"
                }
              }
            }
          }
        ],
        "availability": "production",
        "documentationUrl": "https://docs.example.com/mcp-server"
      },
      "oAuthUseCase": "platform_actions",
      "editedByUser": {
        "editedAt": 1625184000,
        "fullName": "John Doe",
        "imageUrl": "https://example.com/profile/johndoe.jpg"
      }
    }
  ]
}