Skip to content
VS Code

meta api mcp server for VS Code

io.github.savhascelik/meta-api-mcp-server

You can connect any API to LLMs. This enables AI to interact directly with APIs

client:VS Code transport:stdio runtime:npm

Install meta api mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "your-api-key",
      "description": "YOUR_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "meta-api-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "meta-api-mcp-server"
      ],
      "env": {
        "YOUR_API_KEY": "${input:your-api-key}"
      }
    }
  }
}

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

meta api mcp server in other clients