RustFox 是 AI Skill Hub 本期精选MCP工具之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
基于Rust的Telegram AI助手,集成OpenRouter LLM和沙盒
RustFox 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
基于Rust的Telegram AI助手,集成OpenRouter LLM和沙盒
RustFox 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/chinkan/RustFox
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"rustfox": {
"command": "npx",
"args": ["-y", "rustfox"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 RustFox 执行以下任务... Claude: [自动调用 RustFox MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"rustfox": {
"command": "npx",
"args": ["-y", "rustfox"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<p align="center"> <img src="assets/logo.jpeg" alt="RustFox Logo" width="200"/> </p>
moonshotai/kimi-k2.5)qwen/qwen3-embedding-8bagents/ with their own model, tool whitelist, and AGENT.md instructions; invoked via invoke_agent, with read_agent_file/write_agent_file for file I/O and reload_agents for hot-reloadingplan_create, plan_update, plan_view built-in tools let the agent create and manage structured execution plans stored in the sandbox; power the problem-solver subagent skillcode-interpreter (executes and iterates code snippets) and problem-solver (orchestrates multi-step reasoning with plan tools) ship out of the box/verbose command toggles a live Telegram status message showing tool calls as they run[[mcp_servers]] name = "brave-search" command = "npx" args = ["-y", "@brave/brave-search-mcp-server"] [mcp_servers.env] BRAVE_API_KEY = "your-brave-api-key"
Thanks: Markdown-to-entities conversion approach inspired by telegramify-markdown by sudoskys.
cargo build --release
Run the setup wizard — it guides you through all required fields and writes config.toml for you:
```bash
cargo run --bin rustfox -- /path/to/config.toml ```
See config.example.toml for all options.
| Setting | Description |
|---|---|
telegram.bot_token | Telegram Bot API token |
telegram.allowed_user_ids | List of user IDs allowed to use the bot |
openrouter.api_key | OpenRouter API key |
openrouter.model | LLM model ID (default: moonshotai/kimi-k2.5) |
sandbox.allowed_directory | Directory for file/command operations |
memory.database_path | SQLite DB path (default: rustfox.db) |
embedding (optional) | Vector search API config (default model: qwen/qwen3-embedding-8b) |
skills.directory | Folder of bot skill files (default: skills/) |
agents.directory | Folder of agent definition files (default: agents/) |
mcp_servers | List of MCP servers to connect |
general.location | Your location string (under [general]), injected into system prompt |
RustFox supports the Model Context Protocol (MCP) — an open standard for connecting AI assistants to external tools and data sources. Any MCP-compatible server can be plugged in via config.toml.
MCP servers are usually distributed as Python packages (run via uvx) or npm packages (run via npx).
| Runtime | Install |
|---|---|
uvx (Python) | [Install uv](https://docs.astral.sh/uv/getting-started/installation/) — curl -LsSf https://astral.sh/uv/install.sh \| sh |
npx (Node.js) | [Install Node.js](https://nodejs.org/) — comes bundled with npm/npx |
Add one [[mcp_servers]] block per server in config.toml:
```toml [[mcp_servers]] name = "server-name" # used to namespace tools: mcp_<name>_<tool> command = "uvx" # or "npx", or any executable on PATH args = ["package-name", "optional-arg"]
#### Popular MCP Servers
| Server | Package | Runtime | Notes |
|--------|---------|---------|-------|
| [Git](https://github.com/modelcontextprotocol/servers/tree/main/src/git) | `mcp-server-git` | `uvx` | Read/search git repos |
| [Filesystem](https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem) | `@modelcontextprotocol/server-filesystem` | `npx` | File access outside the sandbox |
| [Brave Search](https://github.com/brave/brave-search-mcp-server) | `@brave/brave-search-mcp-server` | `npx` | Web search (needs [Brave API key](https://brave.com/search/api/)) |
| [GitHub](https://github.com/modelcontextprotocol/servers/tree/main/src/github) | `@modelcontextprotocol/server-github` | `npx` | Issues, PRs, repos |
| [Fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch) | `mcp-server-fetch` | `uvx` | HTTP fetch / web scraping |
| [SQLite](https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite) | `mcp-server-sqlite` | `uvx` | Query local SQLite databases |
| [Puppeteer](https://github.com/modelcontextprotocol/servers/tree/main/src/puppeteer) | `@modelcontextprotocol/server-puppeteer` | `npx` | Browser automation |
| [Threads](https://github.com/baguskto/threads-mcp) | `threads-mcp-server` | `npx` | Publish/manage Meta Threads posts (needs access token) |
> Find more servers at the [MCP server registry](https://github.com/modelcontextprotocol/servers) and [mcp.so](https://mcp.so/).
#### Examples
toml
[[mcp_servers]] name = "threads" command = "npx" args = ["-y", "threads-mcp-server"] [mcp_servers.env] THREADS_ACCESS_TOKEN = "your-long-lived-access-token" ```
Tools from MCP servers are automatically namespaced as mcp_<server-name>_<tool-name> (e.g. mcp_git_git_log). Run /tools in the bot to see all registered tools after startup.
高质量的Rust实现,集成LLM和沙盒
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
经综合评估,RustFox 在MCP工具赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | RustFox |
| 原始描述 | 开源MCP工具:A Rust-based Telegram AI assistant powered by OpenRouter LLM with built-in sandb。⭐6 · Rust |
| Topics | aiai-agentembeddingsrust |
| GitHub | https://github.com/chinkan/RustFox |
| License | MIT |
| 语言 | Rust |
收录时间:2026-05-28 · 更新时间:2026-05-30 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端