- Home
- MCP servers
- Gentoro
Gentoro
- typescript
6
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"gentoro-gt-mcp-nodejs-server": {
"command": "npx",
"args": [
"-y",
"@gentoro/mcp-nodejs-server"
],
"env": {
"GENTORO_KEY": "api-bridge-url",
"GENTORO_API_KEY": "<your api key>",
"GENTORO_BASE_URL": "<url where gentoro is hosted>",
"GENTORO_BRIDGE_UID": "<your bridge uid>"
}
}
}
}Gentoro MCP Server enables Claude to interact with Gentoro bridges and underlying capabilities. It centralizes control of agents and tools within Gentoro, while exposing a streamlined MCP interface for your NodeJS-based workflows.
How to use
You run the Gentoro MCP Server as an MCP host that your MCP clients connect to. The server is configured to use Gentoro’s bridge and API keys, letting you enable or disable tools per your Gentoro Studio setup. Start the server with your preferred MCP client, then reference it in your client’s configuration so it can request available tools and data sources through Gentoro.
How to install
Prerequisites: Node.js and npm installed on your system.
{
"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>"
}
}
}
}
Additional notes
If you prefer an alternative key format, you can pass a combined key that encodes the API key, bridge UID, and base URL. The short version is also supported.
{
"mcpServers": {
"gentoro": {
"command": "npx",
"args": [
"-y",
"@gentoro/mcp-nodejs-server"
],
"env": {
"GENTORO_KEY": "<your api key>/<your bridge uid>/<url where gentoro is hosted>"
}
}
}
}