← 返回
效率工具 Key 中文

uno

Call 2000+ tools via curl, zero installation. Supports tool-level semantic search — get full inputSchema in one step and invoke directly. Covers search, dev,...
通过 curl 调用 2000+ 工具,无需安装。支持工具级语义搜索——一步获取完整 inputSchema 并直接调用。覆盖搜索、开发……
lxyd-ai
效率工具 clawhub v3.0.0 2 版本 100000 Key: 需要
★ 0
Stars
📥 686
下载
💾 3
安装
2
版本
#latest

概述

Uno MCP Tools

Call MCPMarket's REST API directly via curl to search and invoke 2000+ tools. No packages to install.

Prerequisites

  • curl (pre-installed on most systems)

Authentication

# 1. Request a device code
curl -s -X POST https://mcpmarket.cn/oauth/device/code \
  -d "client_id=skill-agent&scope=mcp:*"

You MUST display the exact verification_uri and user_code from the response to the user. Never construct or modify the URL yourself.

# 2. Poll for token after user authorizes (retry every 5s until access_token is returned)
curl -s -X POST https://mcpmarket.cn/oauth/token \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "grant_type=urn:ietf:params:oauth:grant-type:device_code&device_code=DEVICE_CODE&client_id=skill-agent"

# 3. Store the token
mkdir -p ~/.uno && chmod 700 ~/.uno
echo "ACCESS_TOKEN_VALUE" > ~/.uno/token && chmod 600 ~/.uno/token

Verify login:

curl -s https://mcpmarket.cn/api/uno/verify-token \
  -H "Authorization: Bearer $(cat ~/.uno/token)"

Two-Step Invocation (Core Flow)

# Step 1: Search tools, get tool_name and inputSchema
curl -s "https://mcpmarket.cn/api/uno/search-tools?q=weather&mode=hybrid&limit=5" \
  -H "Authorization: Bearer $(cat ~/.uno/token)"

# Step 2: Call the tool
curl -s -X POST https://mcpmarket.cn/api/uno/call-tool \
  -H "Authorization: Bearer $(cat ~/.uno/token)" \
  -H "Content-Type: application/json" \
  -d '{"tool_name":"tonghu-weather.weatherArea","arguments":{"area":"Beijing"}}'

API Endpoints

EndpointMethodDescription
-------------------------------
/api/uno/search-toolsGETSearch tools (main entry) — returns tools + inputSchema + stats
/api/uno/search-serversGETSearch servers
/api/uno/call-toolPOSTInvoke a tool (server.tool_name format)
/api/uno/rate-serverPOSTRate a tool/skill (tool_name or skill_id), affects search ranking
/api/uno/categoriesGETList all categories with counts
/api/uno/creditsGETQuery credit balance + recharge URL
/api/uno/skills-searchPOSTSearch Agent Skills — returns meta + quality signals
/api/uno/skills-fetchPOSTFetch full Skill content (SKILL.md + file list)

All endpoints use Base URL https://mcpmarket.cn and require Authorization: Bearer .

search-tools Parameters

ParameterTypeDescription
------------------------------
qstringSearch keyword
categorystringBrowse by category, e.g. search, dev, finance, social
modestringkeyword (exact) / semantic / hybrid (recommended)
limitintNumber of results, default 5, max 15

Returns: tools[] (with tool, desc, inputSchema + stats fields), servers[]

tools[] stats fields (for selection guidance):

FieldDescription
--------------------
ratingScore (0–5)
rating_countNumber of ratings
avg_msAverage response latency (ms)
calls_7dCalls in the last 7 days
success_rateSuccess rate (0–1)

Search keyword tips: The backend vector index is built from tool function descriptions, so keywords should match what the tool does, not your query intent.

  • weather — matches weather tool descriptions
  • weather in Shanghai tomorrow — reads like a query, less likely to match tools

call-tool Parameters

ParameterTypeDescription
------------------------------
tool_namestringRequired Format: server_name.tool_name (from tool field in search-tools result)
argumentsobjectRequired Constructed from inputSchema

Response structure:

{"content": [{"type": "text", "text": "<JSON string>"}], "isError": false}

> content[0].text is itself a JSON string and needs to be parsed again. On error, isError is true and error contains the message.

Downstream OAuth: Some services (e.g. GitHub, Notion) require authorization on first call:

{"auth_required": true, "auth_url": "https://...", "state_id": "..."}

Open auth_url, complete authorization, then call again directly — the platform links the token server-side automatically.

categories (Browse by Category)

curl -s https://mcpmarket.cn/api/uno/categories \
  -H "Authorization: Bearer $(cat ~/.uno/token)"

Returns category names, counts, and representative server names. Useful when you're not sure which tool to use.

rate-server (Rate After Use)

After calling a tool or fetching a skill, submit a rating (0–5) to help improve search ranking:

# Rate a tool (recommended — tool-level granularity)
curl -s -X POST https://mcpmarket.cn/api/uno/rate-server \
  -H "Authorization: Bearer $(cat ~/.uno/token)" \
  -H "Content-Type: application/json" \
  -d '{"tool_name":"amap-maps.maps_weather","rating":4.5,"user_id":"YOUR_USER_ID"}'

# Rate a skill
curl -s -X POST https://mcpmarket.cn/api/uno/rate-server \
  -H "Authorization: Bearer $(cat ~/.uno/token)" \
  -H "Content-Type: application/json" \
  -d '{"skill_id":"abc123","rating":4.0,"user_id":"YOUR_USER_ID"}'
ParameterDescription
------------------------
tool_nameRate a tool (server.tool format)
skill_idRate a skill
server_nameLegacy compatibility
rating0.0–5.0 (required)
user_idUser ID (required)

> When call-tool or skills-fetch succeeds, a rating_hint is included in the response. Please rate proactively when you receive it.

credits (Balance + Recharge)

curl -s https://mcpmarket.cn/api/uno/credits \
  -H "Authorization: Bearer $(cat ~/.uno/token)"

Returns:

{
  "credits": 86,
  "daily_free_credits": 100,
  "daily_free_max": 100,
  "total_consumed": 14,
  "recharge_url": "https://mcpmarket.cn/billing"
}

When credits run low, show recharge_url to the user.

skills-search (Search Agent Skills)

curl -s -X POST https://mcpmarket.cn/api/uno/skills-search \
  -H "Authorization: Bearer $(cat ~/.uno/token)" \
  -H "Content-Type: application/json" \
  -d '{"q":"wechat article","mode":"hybrid","limit":5}'

Returns skills[], each containing:

FieldDescription
--------------------
skill_idUnique ID, used for skills-fetch
skill_nameName
descriptionDescription (may include en/zh)
categoriesCategory tags
starsGitHub stars
forksFork count (popularity indicator)
token_countToken count of SKILL.md (loading cost reference)

skills-fetch (Fetch Full Skill Content)

curl -s -X POST https://mcpmarket.cn/api/uno/skills-fetch \
  -H "Authorization: Bearer $(cat ~/.uno/token)" \
  -H "Content-Type: application/json" \
  -d '{"skill_ids":["abc123","def456"]}'

Returns for each skill:

  • skill_md: Full SKILL.md content
  • files: File list
  • download_url: ZIP download link
  • repo_url: GitHub repository link

> Maximum 10 skills per request.

⚠️ Parameter Construction Rules (Must Read)

Always read inputSchema before calling — never guess parameters.

CheckDescriptionCommon Mistake
------------------------------------
required fieldsAll must be providedMissing required fields causes errors
minLength: 1No empty strings ""Empty query returns empty results
Copy field names from schemaDon't rely on memoryfilter vs filters — one character breaks everything
enum constraintsOnly valid enum valuesWrong value causes silent failure
descriptionRead when field meaning is unclearAvoid wrong format inputs

Standard two-step flow (step 1 is mandatory):

# Step 1: search-tools, read inputSchema (always do this first)
curl -s "https://mcpmarket.cn/api/uno/search-tools?q=<keyword>&mode=hybrid&limit=5" \
  -H "Authorization: Bearer $(cat ~/.uno/token)"
# → Check required / minLength / field names / enum carefully

# Step 2: construct correct arguments from schema and call
curl -s -X POST https://mcpmarket.cn/api/uno/call-tool \
  -H "Authorization: Bearer $(cat ~/.uno/token)" \
  -H "Content-Type: application/json" \
  -d '{"tool_name":"<tool>","arguments":{<fill from schema>}}'

Workflow Tips

  1. Search tools first, read inputSchema before calling — the most important step, never skip
  2. Keywords match tool function, not query intentweather ✅, tomorrow's weather in Shanghai
  3. Copy field names from schema — don't rely on memory; filtersfilter
  4. Rate after successful calls — when rating_hint is returned, call rate-server to help improve rankings
  5. Need a capability or guide — use skills-search to find, skills-fetch to load full content
  6. No results — try English keywords, or switch to mode=semantic
  7. Low credits — use credits to check balance, direct user to recharge_url

Credential Reference

ItemValue
-------------
Token file~/.uno/token (permissions 0600)
API Base URLhttps://mcpmarket.cn
Logoutrm ~/.uno/token

____

版本历史

共 2 个版本

  • v3.0.0 当前
    2026-05-03 04:42 安全 安全
  • v2.0.0
    2026-03-30 03:32 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Word / DOCX

ivangdavila
创建、检查和编辑 Microsoft Word 文档及 DOCX 文件,支持样式、编号、修订记录、表格、分节符及兼容性检查等功能。
★ 438 📥 147,277
productivity

Weather

steipete
获取当前天气和预报(无需API密钥)
★ 445 📥 226,140

clawdchat-official

lxyd-ai
ClawdChat官方技能——AI社交网络日常运营指南,包含发帖、评论、点赞、提及、私信、圈子、工具调用、A2A消息。使用...
★ 1 📥 596