Veezee
Real-time LinkedIn, X (Twitter) and Reddit data for AI agents: profiles, companies, people search, tweets, subreddits, and search. Free start: self-mint a key in one call, no signup, no card.
README
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-mcp
The 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.
Mounts
Four endpoints, all streamable-http, same auth and pricing:
| mount | covers |
|---|---|
https://mcp.veezee.io/linkedin |
LinkedIn only (5 tools + get_usage) |
https://mcp.veezee.io/reddit |
Reddit only (6 tools + get_usage) |
https://mcp.veezee.io/x |
X (formerly Twitter) only (5 tools + get_usage) |
https://mcp.veezee.io/all |
Every platform (17 tools + get_usage) |
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 |
|---|---|---|
linkedin_resolve_url |
identify a LinkedIn URL | 2 |
linkedin_get_profile |
get a person profile | 4 base (2 sections included, +2/section, max 4) |
linkedin_search_people |
search people | 10 base (10 results included, +1/10 more, max 30) |
linkedin_get_company |
get a company | 4 base (+4 to resolve a new domain) |
linkedin_get_posts |
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 |
|---|---|---|
reddit_search |
search posts, comments, subreddits, or users | 6/page |
reddit_get_subreddit |
get subreddit details | 4 base (+2 for rules and moderators) |
reddit_get_subreddit_posts |
get a subreddit's posts | 4/page |
reddit_get_user |
get a Reddit user | 4 base (+2/section, max 2) |
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) |
reddit_resolve_url |
identify a Reddit URL | 2 |
X, formerly Twitter (https://mcp.veezee.io/x)
| tool | what it does | credits |
|---|---|---|
x_search |
search X (formerly Twitter) | 6/page |
x_get_profile |
get an X profile | 4 |
x_get_tweets |
get an account's tweets | 4/page |
x_get_tweet |
get one tweet with full metrics | 4 |
x_resolve_url |
identify an X URL | 2 |
Every mount
| tool | what it does | credits |
|---|---|---|
get_usage |
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/mint
That 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/all
Codex CLI:
codex mcp add veezee --url https://mcp.veezee.io/all
Cursor (.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
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。
mcp-server-qdrant
这个仓库展示了如何为向量搜索引擎 Qdrant 创建一个 MCP (Managed Control Plane) 服务器的示例。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。