{
  "markdown": "# Veezee MCP server\n\nLinkedIn, Reddit, and X (formerly Twitter) data for AI agents, over MCP or REST. This repo is the public home and issue tracker for the hosted servers on the [official MCP Registry](https://registry.modelcontextprotocol.io): `io.veezee/linkedin` (3.1.0), `io.veezee/reddit` (1.1.0), and `io.veezee/x-twitter` (1.1.0). The server is a hosted service; this repo also ships a small stdio proxy (`npx github:veezeehq/veezee-mcp`) for clients that spawn a local command.\n\n- Every call needs a free key, and minting one costs nothing: no signup, no card, no human. See Quickstart below. The free tier is 200 credits per IP per day across all platforms, cached data, first page only. Paying at https://veezee.io/upgrade credits the same key with a higher budget, realtime freshness, and full pagination.\n- Website and docs: https://veezee.io\n- Found a bug or a gap? [Open an issue](https://github.com/veezeehq/veezee-mcp/issues) or write hello@veezee.io.\n\n## Run locally (stdio)\n\nFor MCP clients that spawn a local command instead of connecting to a URL:\n\n```\nnpx github:veezeehq/veezee-mcp\n```\n\nThe proxy connects to `https://mcp.veezee.io/all` and mints a free trial key on first run (no signup). Set `VEEZEE_API_KEY` to reuse one key across runs, and `VEEZEE_MCP_URL` to point at a single-platform mount. Docker: `docker build -t veezee-mcp . && docker run -i veezee-mcp`.\n\n## Mounts\n\nFour endpoints, all streamable-http, same auth and pricing:\n\n| mount | covers |\n|---|---|\n| `https://mcp.veezee.io/linkedin` | LinkedIn only (5 tools + `get_usage`) |\n| `https://mcp.veezee.io/reddit` | Reddit only (6 tools + `get_usage`) |\n| `https://mcp.veezee.io/x` | X (formerly Twitter) only (5 tools + `get_usage`) |\n| `https://mcp.veezee.io/all` | Every platform (17 tools + `get_usage`) |\n\nPick a single-platform mount when your agent only needs one platform: a smaller tool list is easier for the model to pick from correctly and costs less context per turn. Pick `/all` when one task spans platforms, e.g. a research brief that pulls LinkedIn, Reddit, and X signal on the same account, or a monitoring loop that watches more than one platform at once.\n\n## The 17 tools\n\n**LinkedIn** (`https://mcp.veezee.io/linkedin`)\n\n| tool | what it does | credits |\n|---|---|---|\n| `linkedin_resolve_url` | identify a LinkedIn URL | 2 |\n| `linkedin_get_profile` | get a person profile | 4 base (2 sections included, +2/section, max 4) |\n| `linkedin_search_people` | search people | 10 base (10 results included, +1/10 more, max 30) |\n| `linkedin_get_company` | get a company | 4 base (+4 to resolve a new domain) |\n| `linkedin_get_posts` | recent posts by a person or company | 4/page (+4 to resolve a new domain) |\n\n**Reddit** (`https://mcp.veezee.io/reddit`)\n\n| tool | what it does | credits |\n|---|---|---|\n| `reddit_search` | search posts, comments, subreddits, or users | 6/page |\n| `reddit_get_subreddit` | get subreddit details | 4 base (+2 for rules and moderators) |\n| `reddit_get_subreddit_posts` | get a subreddit's posts | 4/page |\n| `reddit_get_user` | get a Reddit user | 4 base (+2/section, max 2) |\n| `reddit_get_post` | get posts by id, with an optional discussion thread | 4 for up to 10 ids (+1/10 more, max 100; +4 for the full thread or one comment in context) |\n| `reddit_resolve_url` | identify a Reddit URL | 2 |\n\n**X, formerly Twitter** (`https://mcp.veezee.io/x`)\n\n| tool | what it does | credits |\n|---|---|---|\n| `x_search` | search X (formerly Twitter) | 6/page |\n| `x_get_profile` | get an X profile | 4 |\n| `x_get_tweets` | get an account's tweets | 4/page |\n| `x_get_tweet` | get one tweet with full metrics | 4 |\n| `x_resolve_url` | identify an X URL | 2 |\n\n**Every mount**\n\n| tool | what it does | credits |\n|---|---|---|\n| `get_usage` | check credits and recent charges | 0 |\n\nAny tool call can set `freshness: \"realtime\"` for +2 credits to force a live fetch instead of cached data. Full tool reference with schemas: https://veezee.io/docs\n\n## Quickstart\n\nEvery tool call needs a key, and getting one costs nothing. Mint one directly:\n\n```bash\ncurl -s -X POST https://api.veezee.io/v1/keys/mint\n```\n\nThat returns a `vz_trial_...` key with the same free-tier budget as before: 200 credits per IP per day, cached data, first page only. Drop it into your MCP client config as a bearer header, then reconnect. Example for `/all` (swap in `/linkedin`, `/reddit`, or `/x` for a single-platform mount):\n\n```json\n{\n  \"mcpServers\": {\n    \"veezee\": {\n      \"url\": \"https://mcp.veezee.io/all\",\n      \"headers\": { \"Authorization\": \"Bearer vz_trial_...\" }\n    }\n  }\n}\n```\n\nDon't want to mint a key by hand first? If your client supports MCP authorization (Claude Code, claude.ai connectors), just connect: the server answers unauthenticated requests with a sign-in challenge and the client opens a Veezee sign-in in your browser (email code, no password, no card). Clients without that support get a `KEY_REQUIRED` error whose message spells out the mint step (`POST /v1/keys/mint`) plus a `mint_url`. Either route, you get from zero to a working connection with no signup form and no card.\n\nPaying at https://veezee.io/upgrade credits the same key, trial straight to flex; nothing to reconfigure. Realtime freshness and full pagination come with a paid balance.\n\n## Install\n\nExamples below use `/all`; swap in `/linkedin`, `/reddit`, or `/x` for a single-platform mount.\n\nClaude Code:\n\n```\nclaude mcp add --transport http veezee https://mcp.veezee.io/all\n```\n\nCodex CLI:\n\n```\ncodex mcp add veezee --url https://mcp.veezee.io/all\n```\n\nCursor (`.cursor/mcp.json` or `~/.cursor/mcp.json`):\n\n```json\n{\n  \"mcpServers\": {\n    \"veezee\": { \"url\": \"https://mcp.veezee.io/all\" }\n  }\n}\n```\n\nVS Code (`.vscode/mcp.json`):\n\n```json\n{\n  \"servers\": {\n    \"veezee\": { \"type\": \"http\", \"url\": \"https://mcp.veezee.io/all\" }\n  }\n}\n```\n\nclaude.ai: Settings > Connectors > Add custom connector > `https://mcp.veezee.io/all` (or a single-platform mount).\n\nYou can connect any of the clients above before you have a key: OAuth-capable clients sign in on first contact, and the rest get a `KEY_REQUIRED` error that spells out the mint step, as described in Quickstart; add the `Authorization` header once you have the key.\n\nMore clients (Windsurf, Cline, Zed, plain REST), each snippet verified against the client's official docs: https://veezee.io/docs/clients\n\n## REST twin\n\nEvery tool has a REST route with identical semantics at `https://api.veezee.io` (contract: https://veezee.io/openapi.json). A typed TypeScript SDK and CLI ship as [`@veezee/sdk`](https://www.npmjs.com/package/@veezee/sdk) (docs: https://veezee.io/docs/sdk).\n\n## Links\n\n- Agent setup guide: https://veezee.io/agent-setup/prompt.md\n- Operating rules for agents: https://veezee.io/AGENTS.md\n- Pricing: https://veezee.io/pricing\n- What we store and how keys are handled: https://veezee.io/trust\n- Skills packs: https://github.com/veezeehq/veezee-skills\n",
  "bytes": 6923,
  "sha": "8d3181e749a65996e0fb5082461546e8a1cfe802569c880384300fc9a07f92c0",
  "repo_slug": "veezeehq/veezee-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_veezee_x_twitter_7a90231a/readme"
}