Smithery

mcp.servers.generate.create

Generates a Model Control Protocol (MCP) URL for an existing server with custom query parameters. The URL includes user-specific parameters and configuration flags that control the behavior of the MCP connection.

Remote smithery/composio

Other tools also called mcp.servers.generate.create? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "user_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "user_123456",
        "user_789012"
      ],
      "description": "List of user identifiers for whom the URL is generated"
    },
    "mcp_server_id": {
      "type": "string",
      "example": "550e8400-e29b-41d4-a716-446655440000",
      "description": "Unique identifier of the MCP server to generate URL for"
    },
    "connected_account_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "ca_1a2b3c4d5e6f",
        "ca_7g8h9i0j1k2l",
        "ca_3m4n5o6p7q8r"
      ],
      "description": "List of connected account identifiers"
    },
    "managed_auth_by_composio": {
      "type": "boolean",
      "default": false,
      "example": true,
      "description": "Flag indicating if Composio manages authentication"
    }
  }
}