{
  "$schema": "https://modelcontextprotocol.io/schema/server-manifest.json",
  "name": "skillboss",
  "version": "1.0.0",
  "description": "Access 688+ AI endpoints across 61 vendors through a single OpenAI-compatible API. Claude, GPT, Gemini, DeepSeek, image/video generation, payments, email, and more.",

  "homepage": "https://www.skillboss.co",
  "documentation": "https://www.skillboss.co/docs",
  "repository": "https://github.com/SkillBoss-AI/skillboss-skills",

  "author": {
    "name": "SkillBoss",
    "email": "support@skillboss.co",
    "url": "https://www.skillboss.co"
  },

  "capabilities": [
    "chat",
    "image-generation",
    "video-generation",
    "audio-tts",
    "audio-stt",
    "web-scraping",
    "payments",
    "email",
    "sms",
    "database",
    "hosting"
  ],

  "tools": [
    {
      "name": "chat_completion",
      "description": "Generate text using 50+ LLMs (Claude, GPT, Gemini, DeepSeek, Qwen, etc.) via OpenAI-compatible API",
      "endpoint": "/v1/chat/completions",
      "method": "POST",
      "inputSchema": {
        "type": "object",
        "properties": {
          "model": {"type": "string", "description": "Model ID (e.g., claude-4-5-sonnet, gpt-5, gemini-2.5-flash)"},
          "messages": {"type": "array", "items": {"type": "object", "properties": {"role": {"type": "string"}, "content": {"type": "string"}}}},
          "max_tokens": {"type": "integer"},
          "temperature": {"type": "number"}
        },
        "required": ["model", "messages"]
      }
    },
    {
      "name": "generate_image",
      "description": "Generate images using Flux, DALL-E, Stable Diffusion, etc.",
      "endpoint": "/v1/run",
      "method": "POST",
      "inputSchema": {
        "type": "object",
        "properties": {
          "model": {"type": "string", "description": "Model ID (e.g., replicate/flux-1.1-pro, replicate/dall-e-3)"},
          "input": {"type": "object", "properties": {"prompt": {"type": "string"}}}
        },
        "required": ["model", "input"]
      }
    },
    {
      "name": "generate_video",
      "description": "Generate videos using Veo, Minimax, Kling, Wan, etc.",
      "endpoint": "/v1/run",
      "method": "POST",
      "inputSchema": {
        "type": "object",
        "properties": {
          "model": {"type": "string", "description": "Model ID (e.g., replicate/google/veo-3.1, mm/t2v)"},
          "input": {"type": "object", "properties": {"prompt": {"type": "string"}}}
        },
        "required": ["model", "input"]
      }
    },
    {
      "name": "text_to_speech",
      "description": "Convert text to speech using ElevenLabs, OpenAI TTS, etc.",
      "endpoint": "/v1/run",
      "method": "POST",
      "inputSchema": {
        "type": "object",
        "properties": {
          "model": {"type": "string", "description": "Model ID (e.g., elevenlabs/tts, openai/tts-1)"},
          "input": {"type": "object", "properties": {"text": {"type": "string"}, "voice": {"type": "string"}}}
        },
        "required": ["model", "input"]
      }
    },
    {
      "name": "web_scrape",
      "description": "Scrape web pages, extract data, search the web using Firecrawl, Jina, Apify, etc.",
      "endpoint": "/v1/run",
      "method": "POST",
      "inputSchema": {
        "type": "object",
        "properties": {
          "model": {"type": "string", "description": "Model ID (e.g., firecrawl/scrape, jina/reader, apify/web-scraper)"},
          "input": {"type": "object", "properties": {"url": {"type": "string"}}}
        },
        "required": ["model", "input"]
      }
    }
  ],

  "api": {
    "type": "openai-compatible",
    "baseUrl": "https://api.heybossai.com/v1",
    "authentication": {
      "type": "bearer",
      "tokenUrl": "https://www.skillboss.co/console"
    },
    "endpoints": {
      "chat": "/chat/completions",
      "run": "/run",
      "models": "/models"
    }
  },

  "models": {
    "chat": [
      "claude-4-5-sonnet",
      "claude-3-7-sonnet",
      "claude-3-5-haiku",
      "gpt-5",
      "gpt-4-turbo",
      "gpt-4o",
      "gpt-4o-mini",
      "gemini-2.5-flash",
      "gemini-2.0-pro",
      "deepseek/deepseek-v3",
      "qwen/qwen-max"
    ],
    "image": ["flux", "dall-e-3"],
    "video": ["veo-3.1", "minimax"],
    "audio": ["elevenlabs", "openai-tts", "whisper"]
  },

  "installation": {
    "oneLineInstall": "set up skillboss.co/skill.md",

    "platforms": {
      "claude-code": {
        "method": "skills-pack",
        "command": "set up skillboss.co/skill.md",
        "manual": {
          "skillsDir": "~/.claude/skills/skillboss",
          "downloadUrl": "https://www.skillboss.co/console"
        }
      },
      "cursor": {
        "method": "skills-pack",
        "command": "set up skillboss.co/skill.md",
        "manual": {
          "skillsDir": "~/.cursor/skills/skillboss",
          "downloadUrl": "https://www.skillboss.co/console"
        }
      },
      "windsurf": {
        "method": "skills-pack",
        "command": "set up skillboss.co/skill.md",
        "manual": {
          "skillsDir": "~/.windsurf/skills/skillboss",
          "downloadUrl": "https://www.skillboss.co/console"
        }
      },
      "api-direct": {
        "method": "environment-variables",
        "env": {
          "OPENAI_BASE_URL": "https://api.heybossai.com/v1",
          "OPENAI_API_KEY": "${SKILLBOSS_API_KEY}"
        }
      }
    }
  },

  "pricing": {
    "model": "pay-as-you-go",
    "currency": "USD",
    "freeTier": {
      "amount_usd": 2,
      "description": "$2 free credit on signup"
    },
    "subscription_required": false,
    "creditPacks": [200, 500, 800, 1200]
  },

  "support": {
    "email": "support@skillboss.co",
    "discord": "https://discord.gg/skillboss",
    "documentation": "https://www.skillboss.co/docs"
  },

  "legal": {
    "termsOfService": "https://www.skillboss.co/legal/terms-and-conditions",
    "privacyPolicy": "https://www.skillboss.co/legal/privacy-policy"
  }
}
