一键导入
native-mcp
Connect to MCP (Model Context Protocol) servers for external tool integration. Configure stdio, SSE, or HTTP transports.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Connect to MCP (Model Context Protocol) servers for external tool integration. Configure stdio, SSE, or HTTP transports.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Penetration testing tools for the CodeAgent — network scanning, service enumeration, and vulnerability checks
Obsidian Local REST API tools for the CodeAgent — manage vault notes, search, and metadata
Frida dynamic instrumentation tools for the CodeAgent — mobile app analysis and SSL unpinning
DuckDB in-process analytics tools for the CodeAgent — SQL on CSV/Parquet/JSON without a server
Supabase client tools for the CodeAgent — database CRUD, auth, storage, and edge functions
OSINT reconnaissance tools for the CodeAgent — domain, IP, email, and social media intelligence
| name | native-mcp |
| description | Connect to MCP (Model Context Protocol) servers for external tool integration. Configure stdio, SSE, or HTTP transports. |
| metadata | {"version":"1.0.0","author":"erebus","tags":["mcp","tools","integration","protocol"]} |
Use this skill when the user wants to connect to or use MCP (Model Context Protocol) servers.
| Transport | Use Case | Config Key |
|---|---|---|
| stdio | Local servers launched as child processes | command + args |
| SSE | Remote servers with Server-Sent Events | url with transport = "sse" |
| streamable-http | Remote servers with HTTP streaming | url with transport = "streamable-http" |
MCP servers are configured in erebus.toml or erebus.json:
[[mcp.servers]]
name = "filesystem"
command = "npx"
args = ["-y", "@modelcontextprotocol/server-filesystem", "/home"]
[[mcp.servers]]
name = "brave-search"
url = "https://mcp.brave.com/sse"
transport = "sse"
env = { BRAVE_API_KEY = "your-key" }
When MCP servers are connected, their tools are automatically available to the agent. Each server's tools are prefixed with the server name to avoid collisions.
env are passed only to the specific server process