Install
openclaw skills install mcp-tool-utilsMCP (Model Context Protocol) utilities and helpers. Tools for connecting, configuring, and managing MCP servers with OpenClaw.
openclaw skills install mcp-tool-utilsHilfsmittel für MCP (Model Context Protocol) Integration.
Model Context Protocol (MCP) ermöglicht:
# Server konfigurieren
mcp-tool-utils add-server --name tavily --url https://mcp.tavily.com
# Liste aller Server
mcp-tool-utils list-servers
# Status prüfen
mcp-tool-utils check-health tavily
// Alle verfügbaren Tools anzeigen
const tools = await mcpUtils.discover({
server: "tavily"
});
// Ergebnis:
// [
// { name: "tavily_search", description: "..." },
// { name: "tavily_extract", description: "..." }
// ]
# OpenClaw.json mit MCP-Servern synchronisieren
mcp-tool-utils sync --to openclaw
# Oder zu mcporter
mcp-tool-utils sync --to mcporter
| Server | URL | Tools |
|---|---|---|
| Tavily | https://mcp.tavily.com | tavily_search, tavily_extract |
| Exa | https://mcp.exa.ai | exa_search |
| Firecrawl | https://mcp.firecrawl.dev | firecrawl_scrape, firecrawl_crawl |
{
"mcp": {
"servers": {
"tavily": {
"url": "https://mcp.tavily.com/mcp/?tavilyApiKey=..."
}
}
}
}
const result = await mcpUtils.call({
server: "tavily",
tool: "tavily_search",
params: {
query: "API documentation",
max_results: 5
}
});
| Funktion | Beschreibung |
|---|---|
validateConfig() | Prüft MCP-Konfiguration |
generateTypes() | TypeScript-Definitionen |
monitorLatency() | Server-Performance-Monitoring |
backupServers() | Server-Konfig sichern |
# Server hinzufügen
mcp-tool-utils add tavily --api-key $TAVILY_KEY
# Tool aufrufen
mcp-tool-utils call tavily tavily_search "query=API docs"
# Health-Check
mcp-tool-utils health