Use Veezee from GitHub Copilot

Veezee is 17 tools across LinkedIn, Reddit, and X (formerly Twitter): profile and company lookups, people search, discussion search, recency sweeps, and a free usage meter, all on one connection. Start free, no signup, no card: hosts that support MCP sign-in connect with zero keys, and everything else self-mints a free key in one call. Either way you run under a shared free per-IP daily budget of 200 credits a day.

Setup#

This wires Veezee into the Copilot cloud agent (formerly "coding agent") and Copilot code review on github.com. Inside VS Code, Copilot uses the editor's own MCP support instead: see /integrations/vscode.

Copilot's cloud agent does not support OAuth MCP servers, so it needs a key:

  1. Mint one free: curl -s -X POST https://api.veezee.io/v1/keys/mint (no body, no signup, no card; the key is shown once).
  2. In the repository: Settings > Copilot > Coding agent > add an Agents secret named COPILOT_MCP_VEEZEE_API_KEY with the key as its value. Only secrets prefixed COPILOT_MCP_ reach the MCP configuration.
  3. Same settings area, MCP servers configuration:
{
  "mcpServers": {
    "veezee": {
      "type": "http",
      "url": "https://mcp.veezee.io/all?src=integrations",
      "tools": ["*"],
      "headers": { "Authorization": "Bearer $COPILOT_MCP_VEEZEE_API_KEY" }
    }
  }
}

The tools field is required; ["*"] allows all 17 Veezee tools, or list specific ones (tool names: /docs). Repo-admin access is needed for both steps. When the free daily budget runs short, buy credits at /upgrade: checkout credits the same key, nothing to reconfigure.

What to try first#

Assign the cloud agent a task that needs live social data, for example:

Confirm it works#

Ask your agent: "Fetch the LinkedIn profile for williamhgates and tell me the credit cost from the response envelope." A working connection returns the profile plus a credit cost in one round trip.

Full per-client reference, every host and its tested status: /docs/clients. All docs: /docs. A ready-made setup prompt: /agent-setup/prompt.md.