mcp-integrations
GitHub提供 MCP 服务器发现、工具调用及提供商目录集成能力。当任务涉及外部服务、第三方工具或用户询问 MCP 相关操作时触发,用于扩展核心系统之外的功能集成。
Trigger Scenarios
Install
npx skills add nixopus/nixopus --skill mcp-integrations -g -y
SKILL.md
Frontmatter
{
"name": "mcp-integrations",
"metadata": {
"version": "1.0"
},
"description": "MCP server discovery, tool invocation, and provider catalog integration. Load when a task involves external services, third-party tools, or when the user asks about MCP servers."
}
MCP Integrations
When a task involves external services, third-party tools, or capabilities beyond core Nixopus (e.g. databases, monitoring, CI/CD, analytics, logging, storage, auth providers), proactively check whether an MCP integration can help.
These are runtime tools, not skill files. Use search_tools / load_tool to find and load them — do NOT use skill_read or skill_search.
- Run
search_tools("mcp")thenload_tool(...)to load MCP tools. - Call
discover_mcp_toolsto list tools from all enabled MCP servers. Each tool entry includes server_id, tool name, description, and inputSchema. - Call
call_mcp_toolto invoke a specific tool: pass server_id (UUID from discover_mcp_tools), tool_name (exact name string), and arguments (a JSON object matching the tool's inputSchema — use proper types: strings, numbers, booleans, not everything as strings). - If no relevant integration exists, call
list_mcp_provider_catalogto show what integrations the user can enable.
Also use these tools when the user explicitly asks about MCP servers — list, add, update, delete, or test connections.
Version History
- cf05d97 Current 2026-08-20 14:52


