Gentoro MCP 服务器用于 Gentoro 服务,使 Claude 能够与 Gentoro 桥接器及其所有底层功能进行交互。
Gentoro 允许用户创建并集成工具到一个通用的桥接器中,定义所有可用的功能。
由于此 MCP 服务器完全集成到 Gentoro 中,代理、工具及其底层功能完全由 Gentoro 的桥接器控制,这允许您根据设计启用或禁用工具。
或者下载并本地安装 Gentoro,参见 安装指南。
创建 Gentoro API 密钥 要使用此 MCP 连接器,您需要一个 Gentoro API 密钥。您可以查看如何创建密钥的说明 这里。
定义桥接器 使用 Gentoro Studio,定义您的桥接器,包括所需的所有工具和数据源。
在您的 config.json 文件中添加以下内容:
{
"mcpServers": {
"gentoro": {
"command": "npx",
"args": [
"-y",
"@gentoro/mcp-nodejs-server"
],
"env": {
"GENTORO_API_KEY": "<your api key>",
"GENTORO_BRIDGE_UID": "<your bridge uid>",
"GENTORO_BASE_URL": "<url where gentoro is hosted>"
}
}
}
}
或者,您可以使用 Gentoro 密钥的短版本:
{
"mcpServers": {
"gentoro": {
"command": "npx",
"args": [
"-y",
"@gentoro/mcp-nodejs-server"
],
"env": {
"GENTORO_KEY": "<your api key>/<your bridge uid>/<url where gentoro is hosted>",
}
}
}
}
这些值是 URL 安全的,并且可以在 Gentoro Studio 中正确生成。