Open Source · Rust

能够协同工作的 AI agent。
用配置定义,通过 mesh 连接。

一个 TOML 文件 = 一个完整的自主 agent,包含 LLM、tools、调度、记忆和 mesh networking。 共享 providers,而不共享 API 密钥。在设备上运行。没有云,没有 Python,没有凭证泄露。

也可作为 Rust library、CLI、VS Code extension 和 iOS/Android FFI 使用。

一条命令完成安装

curl -sSf https://query.mt/install.sh | sh

macOS Silicon: 下载后清除 quarantine flag:  xattr -dr com.apple.quarantine qmtcode
Rust developers: 添加到: Cargo.tomlquerymt = { version = "0.3", features = ["extism_host"] }

让 QueryMT 独特的五大支柱 querymt

每项功能都对应其中一个支柱。组合在一起,它们形成其他框架没有的能力。

从配置到运行中 agent 的三步

1

编写 TOML 文件

[agent]
provider = "anthropic"
model = "..."
tools = ["shell", "knowledge_ingest"]

[[mcp]]
name = "github"

[[middleware]]
type = "limits"
2

运行一条命令

qmtcode --config agent.toml --dashboard
启动 agent
加载 MCP servers
创建 knowledge store
启动 scheduler
加入 mesh
3

使用 dashboard

chat > 与它聊天
cron > 安排调度
tail > 观察运行
mode > 切换 mode

17+ providers,一个 API

从 OCI 拉取的 WASM 或 native plugins。默认 sandbox。为本地 inference 自动检测 GPU。

$ qmt providers list 17 adapters
provider-registry status: plugin-ready
[01] plugin: OpenAI 就绪
[02] plugin: Anthropic 就绪
[03] plugin: Google 就绪
[04] plugin: Groq 就绪
[05] plugin: xAI 就绪
[06] plugin: Ollama 就绪
[07] plugin: llama.cpp 就绪
[08] plugin: Mistral 就绪
[09] plugin: DeepSeek 就绪
[10] plugin: Alibaba 就绪
[11] plugin: Moonshot 就绪
[12] plugin: Kimi-Code 就绪
[13] plugin: OpenRouter 就绪
[14] plugin: Codex 就绪
[15] plugin: Z.AI 就绪
[16] plugin: Izwi 就绪
[17] plugin: MRS 就绪

你属于哪一类?