Skip to content
VS Code

feedlio for VS Code

io.github.itechsoftsolution16/feedlio

Feedlio MCP server exposing posting and scheduling tools to Claude Desktop and Claude Code.

client:VS Code transport:stdio runtime:npm

Install feedlio in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "feedlio-api-url",
      "description": "FEEDLIO_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "feedlio-api-token",
      "description": "FEEDLIO_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "feedlio": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@itechsoftsolutions/social-mcp-server"
      ],
      "env": {
        "FEEDLIO_API_URL": "${input:feedlio-api-url}",
        "FEEDLIO_API_TOKEN": "${input:feedlio-api-token}"
      }
    }
  }
}

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

feedlio in other clients