{
  "serverInfo": {
    "name": "Press Release Generator",
    "version": "1.0.0",
    "description": "AI-powered press release generation, SEO optimization, and media distribution platform"
  },
  "transport": {
    "type": "http",
    "endpoint": "https://press-release-generator.base44.app/api/mcp"
  },
  "capabilities": {
    "tools": true,
    "resources": false,
    "prompts": true,
    "sampling": false
  },
  "tools": [
    {
      "name": "generate_press_release",
      "description": "Generate a professional AI-powered press release given a topic, tone, and target length",
      "inputSchema": {
        "type": "object",
        "properties": {
          "topic": { "type": "string", "description": "The news topic or announcement" },
          "tone": { "type": "string", "enum": ["formal", "urgent", "innovative", "marketing", "marketer"] },
          "word_limit": { "type": "number", "description": "Target word count (400-2000)" }
        },
        "required": ["topic"]
      }
    },
    {
      "name": "scan_url_for_pr_angles",
      "description": "Analyze a website URL to discover PR story angles and competitive insights",
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": { "type": "string", "description": "Website URL to analyze" }
        },
        "required": ["url"]
      }
    },
    {
      "name": "generate_blog_article",
      "description": "Generate an SEO-optimized blog article with keyword research",
      "inputSchema": {
        "type": "object",
        "properties": {
          "title": { "type": "string", "description": "Article title" },
          "summary": { "type": "string", "description": "Brief context or key points" },
          "tone": { "type": "string", "enum": ["formal", "urgent", "innovative", "marketing", "marketer"] }
        },
        "required": ["title"]
      }
    }
  ]
}
