Smithery

mcp.app.get

Retrieves a paginated list of Model Control Protocol (MCP) servers that are configured for a specific application or toolkit. This endpoint allows you to find all MCP server instances that have access to a particular application, such as GitHub, Slack, or Jira.

Remote smithery/composio

Other tools also called mcp.app.get? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "github",
      "description": "Filter MCP servers by name (case-insensitive partial match)"
    },
    "limit": {
      "type": "number",
      "default": 10,
      "example": 10,
      "nullable": true,
      "description": "Number of items per page (default: 10)"
    },
    "appKey": {
      "type": "string",
      "example": "github",
      "description": "The key of the app to find MCP servers for"
    },
    "page_no": {
      "type": "number",
      "default": 1,
      "example": 1,
      "nullable": true,
      "description": "Page number for pagination (1-based)"
    },
    "order_by": {
      "enum": [
        "created_at",
        "updated_at"
      ],
      "type": "string",
      "default": "updated_at",
      "example": "updated_at",
      "description": "Field to order results by"
    },
    "toolkits": {
      "type": "string",
      "description": "Comma-separated list of toolkit slugs to filter servers by"
    },
    "auth_config_ids": {
      "type": "string",
      "description": "Comma-separated list of auth config IDs to filter servers by"
    },
    "order_direction": {
      "enum": [
        "asc",
        "desc"
      ],
      "type": "string",
      "default": "desc",
      "example": "desc",
      "description": "Direction of ordering"
    }
  }
}