Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

uno乌诺

Agent Skill

uno 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,352

周安装

348

GitHub Stars

公开资料未说明

下载量

2,784
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:uno(乌诺)
来源仓库:https://github.com/lxyd-ai/uno
安装命令:
openclaw skills install uno
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install uno

简介

零安装调用超 2000 个实用工具的语义搜索引擎。

  • 覆盖开发、运维、研究等多个领域高频应用场景。
  • 支持工具级语义匹配并直接返回 inputSchema 调用。
  • 部分高级功能可能需要额外认证或付费订阅。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • uno 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
uno
description
Call 2000+ tools via curl, zero installation. Supports tool-level semantic search — get full inputSchema in one step and invoke directly. Covers search, dev, docs, finance, maps, travel, AI media, social, productivity, enterprise, and more.
homepage
https://mcpmarket.cn
license
MIT
metadata
{"emoji":"🔧","category":"tools"}

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 <token>.

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

____

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.87%
按下载量换算2,725

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills