Connect seek to external tools via the Model Context Protocol.
通过 Model Context Protocol 连接外部工具。
Each MCP server you configure is started as a subprocess and its tools are merged into seek's tool set alongside built-in tools.
每个 MCP server 启动为子进程,其工具与 seek 内置工具合并。
~/.seek/mcp.json — compatible with Claude Code and Cursor format, so you can reuse an existing mcp.json unchanged.
~/.seek/mcp.json,与 Claude Code 和 Cursor 格式兼容。
{
"mcpServers": {
"server-name": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"],
"env": { "MY_VAR": "value" }
}
}
}
mcp.json).MCP tools are merged at startup and listed alongside built-in tools when the agent decides which to call. Unlike built-in tools, MCP tools have no system-prompt-level guidance — the agent discovers them by name + description alone. Give your MCP server tools descriptive names and descriptions.
MCP 工具在启动时合并,但无系统提示层面的引导——agent 仅通过名称和描述发现它们。请给你的 MCP server 工具起描述性的名称和说明。
Design: PRD feature-mcp-client.md