Skip to content
VS Code

Outreach for VS Code

io.github.mindstone/mcp-server-outreach

Outreach sales engagement MCP server: prospects, sequences, accounts, tasks, and mailings

client:VS Code transport:stdio runtime:npm

Install Outreach in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "outreach-client-id",
      "description": "OUTREACH_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "outreach-client-secret",
      "description": "OUTREACH_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "outreach-access-token",
      "description": "OUTREACH_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "outreach-config-dir",
      "description": "OUTREACH_CONFIG_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "outreach-oauth-port",
      "description": "OUTREACH_OAUTH_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "outreach-oauth-scopes",
      "description": "OUTREACH_OAUTH_SCOPES",
      "password": true
    }
  ],
  "servers": {
    "mcp-server-outreach": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mindstone/mcp-server-outreach"
      ],
      "env": {
        "OUTREACH_CLIENT_ID": "${input:outreach-client-id}",
        "OUTREACH_CLIENT_SECRET": "${input:outreach-client-secret}",
        "OUTREACH_ACCESS_TOKEN": "${input:outreach-access-token}",
        "OUTREACH_CONFIG_DIR": "${input:outreach-config-dir}",
        "OUTREACH_OAUTH_PORT": "${input:outreach-oauth-port}",
        "OUTREACH_OAUTH_SCOPES": "${input:outreach-oauth-scopes}"
      }
    }
  }
}

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

Outreach in other clients