Show HN:PolyMCP Skills – 適用於 MCP 型 AI Agent 的可擴展工具組織

Hacker News·

這篇「Show HN」文章介紹了 PolyMCP Skills,這是一個旨在改善基於 MCP 協議的 AI Agent 工具組織和可擴展性的新工具。它透過讓 Agent 只載入必要的、經過策劃的技能集,來解決 Token 燃燒和工具發現雜訊等問題。

Image

When the number of tools grows:
• Agents burn tokens loading raw schemas
• Tool discovery becomes noisy
• Different agents need different subsets of tools
• Orchestration logic leaks into prompts

Skills are curated, structured sets of MCP tools with documentation.
Agents load only the skills they need instead of full tool schemas.

Skills are generated by discovering tools from MCP servers and auto-categorizing them.

Example: generate skills from a Playwright MCP server:

polymcp skills generate --servers "npx @playwright/mcp@latest"

HTTP MCP servers:

polymcp skills generate
--servers "http://localhost:8000/mcp"
--output ./mcp_skills

Stdio MCP servers:

polymcp skills generate
--stdio
--servers "npx -y @playwright/mcp@latest"
--output ./mcp_skills

Enable skills in an agent:

agent = UnifiedPolyAgent(
llm_provider=llm,
skills_enabled=True,
skills_dir="./mcp_skills",
)

Benefits:
• Smaller agent context
• Scales to large tool sets
• Reusable capabilities across agents
• Tool access control without prompt changes
• Works with HTTP and stdio MCP servers

Repo: https://github.com/poly-mcp/Polymcp

Image

Hacker News

相關文章

  1. Show HN:PolyMCP – 使用 Python 或 TypeScript 建構 MCP 伺服器與 AI 代理程式

    3 個月前

  2. Show HN:Polymcp - 將任何 Python 函數轉換為 AI Agent 的 MCP 工具

    3 個月前

  3. Show HN:MCP 伺服器為 AI 編碼代理提供使用者行為情境

    3 個月前

  4. Show HN:AI 代理的可重用 MCP Playbooks

    6 個月前

  5. Show HN:ToolPlex Desktop – MCP 市場與 AI 工作流程建構器

    5 個月前