Veezee
Provides tools for Reddit data access, including searching posts/comments/users/subreddits, retrieving subreddit details and posts, getting user profiles, and resolving URLs.
Veezee MCP server
LinkedIn, 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: 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.
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.
Website and docs: https://veezee.io
Found a bug or a gap? Open an issue or write hello@veezee.io.
Run locally (stdio)
For MCP clients that spawn a local command instead of connecting to a URL:
npx github:veezeehq/veezee-mcpThe 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.
Related MCP server: Grok X Insights MCP Server
Mounts
Four endpoints, all streamable-http, same auth and pricing:
mount | covers |
| LinkedIn only (5 tools + |
| Reddit only (6 tools + |
| X (formerly Twitter) only (5 tools + |
| Every platform (17 tools + |
Pick 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.
The 17 tools
LinkedIn (https://mcp.veezee.io/linkedin)
tool | what it does | credits |
| identify a LinkedIn URL | 2 |
| get a person profile | 4 base (2 sections included, +2/section, max 4) |
| search people | 10 base (10 results included, +1/10 more, max 30) |
| get a company | 4 base (+4 to resolve a new domain) |
| recent posts by a person or company | 4/page (+4 to resolve a new domain) |
Reddit (https://mcp.veezee.io/reddit)
tool | what it does | credits |
| search posts, comments, subreddits, or users | 6/page |
| get subreddit details | 4 base (+2 for rules and moderators) |
| get a subreddit's posts | 4/page |
| get a Reddit user | 4 base (+2/section, max 2) |
| 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) |
| identify a Reddit URL | 2 |
X, formerly Twitter (https://mcp.veezee.io/x)
tool | what it does | credits |
| search X (formerly Twitter) | 6/page |
| get an X profile | 4 |
| get an account's tweets | 4/page |
| get one tweet with full metrics | 4 |
| identify an X URL | 2 |
Every mount
tool | what it does | credits |
| check credits and recent charges | 0 |
Any 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
Quickstart
Every tool call needs a key, and getting one costs nothing. Mint one directly:
curl -s -X POST https://api.veezee.io/v1/keys/mintThat 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):
{
"mcpServers": {
"veezee": {
"url": "https://mcp.veezee.io/all",
"headers": { "Authorization": "Bearer vz_trial_..." }
}
}
}Don'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.
Paying 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.
Install
Examples below use /all; swap in /linkedin, /reddit, or /x for a single-platform mount.
Claude Code:
claude mcp add --transport http veezee https://mcp.veezee.io/allCodex CLI:
codex mcp add veezee --url https://mcp.veezee.io/allCursor (.cursor/mcp.json or ~/.cursor/mcp.json):
{
"mcpServers": {
"veezee": { "url": "https://mcp.veezee.io/all" }
}
}VS Code (.vscode/mcp.json):
{
"servers": {
"veezee": { "type": "http", "url": "https://mcp.veezee.io/all" }
}
}claude.ai: Settings > Connectors > Add custom connector > https://mcp.veezee.io/all (or a single-platform mount).
You 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.
More clients (Windsurf, Cline, Zed, plain REST), each snippet verified against the client's official docs: https://veezee.io/docs/clients
REST twin
Every 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 (docs: https://veezee.io/docs/sdk).
Links
Agent setup guide: https://veezee.io/agent-setup/prompt.md
Operating rules for agents: https://veezee.io/AGENTS.md
Pricing: https://veezee.io/pricing
What we store and how keys are handled: https://veezee.io/trust
Skills packs: https://github.com/veezeehq/veezee-skills
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceAgentKey is the execution layer between AI agents and the real internet. One MCP install gives your Claude / Cursor / n8n agent unified access to web search, scraping, and 20+ social platforms — no API juggling, one bill.587Apache 2.0
- AlicenseNot gradedqualityDmaintenanceReal-time X/Twitter social intelligence for AI agents and developers, powered by Grok's live search capabilities.333MIT

Veezee Skills MCP Serverofficial
AlicenseNot gradedqualityBmaintenanceEnables AI agents to enrich LinkedIn prospect data with current role, company, and experience through MCP or REST, with credit-metered access and free credits.MIT
Xpoz MCP Serverofficial
AlicenseNot gradedqualityDmaintenanceEnables AI agents to search Twitter, Instagram, Reddit, and TikTok using natural language queries, with CSV exports up to 500K rows and no API keys needed.10MIT
Related MCP Connectors
Twitter/X, Instagram, Reddit & TikTok data for AI agents. Billions of posts. No API keys.
Give your agent live data from Twitter, Reddit, the web and GitHub. No API keys, no scraping stack.
Live web search for AI agents. $0.001/call, x402 on Base, no API key.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/veezeehq/veezee-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server