{
  "schemaVersion": "2024-11-05",
  "serverInfo": {
    "name": "Go-Publicly MCP",
    "version": "0.1.0",
    "vendor": "Go-Publicly",
    "url": "https://www.go-publicly.com",
    "documentation": "https://www.go-publicly.com/submit"
  },
  "transport": {
    "type": "http",
    "endpoint": "https://www.go-publicly.com/api/mcp"
  },
  "capabilities": {
    "tools": {
      "listChanged": false
    },
    "resources": {
      "subscribe": false,
      "listChanged": false
    },
    "prompts": {
      "listChanged": false
    },
    "logging": {}
  },
  "tools": [
    {
      "name": "search_launches",
      "description": "Search Go-Publicly's directory of product launches and creators. Returns a ranked list of relevant results.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Free-text search string for products or categories"
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 25,
            "default": 10
          }
        },
        "required": [
          "query"
        ]
      }
    },
    {
      "name": "get_recent_launches",
      "description": "Return the most recent product launches from Go-Publicly.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 50,
            "default": 20
          }
        }
      }
    },
    {
      "name": "get_launch_details",
      "description": "Fetch detailed metadata for a specific launch or creator profile by slug.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string"
          }
        },
        "required": [
          "slug"
        ]
      }
    }
  ],
  "meta": {
    "catalog": "https://www.go-publicly.com/.well-known/api-catalog",
    "skills": "https://www.go-publicly.com/.well-known/agent-skills/index.json"
  }
}
