Skip to content
VS Code

APIFreaks MCP for VS Code

io.github.api-freaks/apifreaks-mcp

APIFreaks MCP: live APIs for agents. Enable modules with ENABLE_MODULES; discover via list_modules.

client:VS Code transport:stdio runtime:npm

Install APIFreaks MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apifreaks-api-key",
      "description": "APIFREAKS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "enable-modules",
      "description": "ENABLE_MODULES",
      "password": true
    }
  ],
  "servers": {
    "apifreaks-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@apifreaks/mcp"
      ],
      "env": {
        "APIFREAKS_API_KEY": "${input:apifreaks-api-key}",
        "ENABLE_MODULES": "${input:enable-modules}"
      }
    }
  }
}

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

APIFreaks MCP in other clients