Skip to content
VS Code

highstory mcp for VS Code

io.github.7figures007/highstory-mcp

High Story MCP Server - Automate AI content campaigns and social media management.

client:VS Code transport:stdio runtime:npm

Install highstory mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "highstory-sse-url",
      "description": "HIGHSTORY_SSE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "highstory-token",
      "description": "HIGHSTORY_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "highstory-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "highstory-mcp"
      ],
      "env": {
        "HIGHSTORY_SSE_URL": "${input:highstory-sse-url}",
        "HIGHSTORY_TOKEN": "${input:highstory-token}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

highstory mcp in other clients