Quidli Connect MCP
OfficialQuidli Connect MCP
面向代理的标识与信誉方案。将社交账号解析为钱包地址,查看信誉评分,并在 Cursor、Claude Desktop、Claude Code 或任何兼容 MCP 的客户端中发送代币。
一条命令即可体验
无需 API 密钥。
托管版——将其添加到 Claude Code:
claude mcp add --transport http quidli https://mcp.connect.quid.li/本地版——在你的机器上运行:
npx -y @quidli/connect-mcp然后向你的代理提问:
将 Farcaster 账号
ahn.eth解析为钱包。
{
"status": "completed",
"results": [
{
"type": "farcaster",
"value": "ahn.eth",
"ethWalletAddress": "0x07De92Ce6474D718c80e696516bf0bE53290fF5E",
"solWalletAddress": "9DD2CqPKZJoo7ZRgCXxJNMjhzfgVihSKtkZpn8qnEWK9"
}
]
}支持解析 Telegram、Discord、Farcaster、X、GitHub、LinkedIn、邮箱和手机号——并为从未使用过 Quidli 的用户生成钱包。
Lookup、scores、agent 和 price 在共享匿名配额下无需密钥即可运行。添加 Connect API 密钥 可获得更高配额、你自己的个人资料(connect_me)以及 Smart Send。
Related MCP server: MCPAGENT
选择连接方式
托管(Hosted) ( | 本地(Local) ( | |
设置 | 在 MCP 设置中添加 URL | 通过 |
认证 | 可选 API 密钥。无密钥时:lookup/scores/agent/price 使用共享匿名配额 | API 密钥、x402 按调用付费,或可用于 lookup/scores/agent 的无认证模式 |
优点 | 无需安装;无需密钥即可试用;始终运行在 Quidli 基础设施上 | 钱包私钥永不离开你的机器;使用 USDC 按调用付费,无需 API 密钥 |
缺点 | 匿名流量共享全局速率限制;没有按调用计费 | 需要 Node.js 20+;首次运行 |
限制 | 不能使用 x402 / 钱包认证——请不要将私钥发送到托管端点 | x402 模式需要在 Base(主网使用 |
前往 connect.quid.li 获取 Connect API 身份 → 启用 API 访问,以获得更高配额、connect_me 和 Smart Send。
托管(推荐)
零本地设置。Lookup、scores、agent 和 price 无需 API 密钥即可工作(使用共享匿名配额)。添加密钥可获得更高配额、你的个人资料(connect_me)以及 Smart Send。
Cursor
如果你已经添加其他 MCP 服务: 跳过 tw用链接,直接手动添加——在部分 Cursor 版本中,单键安装可能会覆盖整个 mcp.json。
或者粘贴到 Cursor 设置 → MCP → 添加新的 MCP 服务器:
cursor://anysphere.cursor-deeplink/mcp/install?name=quidli-connect&config=eyJ1cmwiOiJodHRwczovL21jcC5jb25uZWN0LnF1aWQubGkifQ==手动添加 {#cursor-manual}
将其合并到 ~/.cursor/mcp.json(全局)或 .cursor/mcp.json(项目)的 mcpServers 下——不要覆盖已内容:
"quidli-connect": {
"url": "https://mcp.connect.quid.li"
}可选——更高配额和 Smart Send:
"quidli-connect": {
"url": "https://mcp.connect.quid.li",
"headers": {
"x-api-key": "<your-connect-api-key>"
}
}Claude Desktop
打开 Claude → 设置 → 连接器(在旧版本中,按照 设置 → 开发者 → 编辑配置)。
添加一个自定义 MCP 连接器,URL 为
https://mcp.connect.quid.li。可选择设置请求头x-api-key: <your-connect-api-key>。
或者将其合并到你的配置文件中并重启 Claude:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"quidli-connect": {
"url": "https://mcp.connect.quid.li"
}
}
}如果你的 Claude 版本不支持远程 url 连接器,请改用本地桥接(仍通过托管 API 数据,运行一个小型本地辅助程序):
{
"mcpServers": {
"quidli-connect": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"--http",
"https://mcp.connect.quid.li"
]
}
}
}桥接需要 Node.js 20+。保存后重启 Claude Desktop。当工具可用时,你会在聊天输入框中看到锤子图标。
在没有密钥的情况下,initialize / tools/list 始终成功。匿名 tools/call 会共享全局配额(超出限制时返回 HTTP 429——获取密钥可获得更高得配额)。占位密钥仍将返回 401。
本地(stdio)
适合希望通过钱包按调用付费,或者希望凭据保存在本地 env 文件中的情况。
需要 Node.js 20+。
Cursor
将以下任一配置添加到 .cursor/mcp.json(项目)或全局 MCP 设置中。
选项 A — API 密钥
与托管相同的计费模式;凭据放在你的机器上。
{
"mcpServers": {
"quidli-connect": {
"command": "npx",
"args": ["-y", "@quidli/connect-mcp"],
"env": {
"CONNECT_API_KEY": "<your-connect-api-key>",
"CONNECT_API_BASE_URL": "https://api.connect.quid.li"
}
}
}
}选项 B — x402 按调用付费(钱包)
不需要 API 密钥。当 API 返回 HTTP 402 时,已认证的调用会自动支付。你的钱包私钥只会被本地进程读取。
{
"mcpServers": {
"quidli-connect": {
"command": "npx",
"args": ["-y", "@quidli/connect-mcp"],
"env": {
"EVM_PRIVATE_KEY": "0x<wallet-with-usdc-on-base>",
"CONNECT_API_BASE_URL": "https://api.connect.quid.li",
"CONNECT_X402_EVM_NETWORK": "8453"
}
}
}
}当指向 staging API 时,请使用 Base Sepolia 的 84532。
选项 C — 无凭据(lookup / scores / agent)
MCP 进程在没有 CONNECT_API_KEY 或 EVM_PRIVATE_KEY 的情况下启动。connect_lookup、connect_scores_*、connect_agent_prompt 和 connect_get_price 会在不认证的情况下调用 API。当 x402 被禁用(价格 0,通常在本地环境中)时,这些调用会成功。在启用 x402 的生产环境中,这些工具会返回 HTTP 402,直到你设置密钥或钱包。
connect_me、connect_drop 和 connect_drop_balance 仍需要 CONNECT_API_KEY。
{
"mcpServers": {
"quidli-connect": {
"command": "npx",
"args": ["-y", "@quidli/connect-mcp"],
"env": {
"CONNECT_API_BASE_URL": "http://127.0.0.1:3011"
}
}
}
}Claude Desktop
打开 Claude → 设置 → 开发者 → 编辑配置(如果看不到该选项,请先启用开发者模式)。
将以下任一区块合并到下方文件中的
mcpServers中:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
重启 Claude Desktop。
选项 A — API key
{
"mcpServers": {
"quidli-connect": {
"command": "npx",
"args": ["-y", "@quidli/connect-mcp"],
"env": {
"CONNECT_API_KEY": "<your-connect-api-key>",
"CONNECT_API_BASE_URL": "https://api.connect.quid.li"
}
}
}
}选项 B — x402 按调用付费(钱包)
{
"mcpServers": {
"quidli-connect": {
"command": "npx",
"args": ["-y", "@quidli/connect-mcp"],
"env": {
"EVM_PRIVATE_KEY": "0x<wallet-with-usdc-on-base>",
"CONNECT_API_BASE_URL": "https://api.connect.quid.li",
"CONNECT_X402_EVM_NETWORK": "8453"
}
}
}
}如果同时设置了 CONNECT_API_KEY 和 EVM_PRIVATE_KEY,则使用 API 密钥。
在本地模式下,凭据是可选的。当 API 不收取 x402 费用时,两种变量均未设置,lookup/scores/agent 仍可使用。connect_me 和 Smart Send 工具需要 CONNECT_API_KEY。
工具
工具 | 功能说明 |
| 列出参考价格(无需认证) |
| 将社交身份解析为 EVM 和 SOL钱包地址 |
| 列出收款人在 Connect 上公开的平台 |
| 批量获取账户或用户名的评分 |
| 获取某个已关联账户的评分 |
| 按 Connect 用户名获取评分 |
| API 密钥所有者的个人资料、评分和已关联账户 —— 仅限 API 密钥 |
| 智能发送(批量代币转账)—— 仅限 API 密钥 |
| 一个代币的 Smart Send 钱包余额—— 仅限 API 密钥 |
| 用于发现接收方的自然语言代理 |
当你需要 Connect 数据或执行操作时,请让客户端使用这些工具。
Maintenance
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI tools to interact with the Lens Protocol decentralized social network ecosystem. Supports fetching profiles, posts, followers, searching content, and accessing social graph data through standardized MCP interfaces.3
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to discover and interact with onchain agent infrastructure on Base, including identity, micropayments, and tool capabilities via MCP.4MIT
- AlicenseNot gradedqualityDmaintenanceEnables any MCP-compatible LLM client to autonomously hold, spend, earn, and receive cryptocurrency using native MCP tools, no code required.371ISC

@agentgram/mcp-serverofficial
AlicenseAqualityAmaintenanceEnables AI agents to interact with AgentGram, the social network for AI agents, through native MCP tools for posting, commenting, voting, and managing identity.22161MIT
Related MCP Connectors
The MCP-native bridge to ERC-8004 (on-chain agent identity/reputation/validation): resolve registrat
Trust stack for AI agents: identity, attest, verify, rate, recommend, discover — on Solana.
Agent-to-agent referral network. Discover, recommend, and refer users between AI agents via MCP.
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/Quidli/connect-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server