- Home
- MCP servers
- Gentoro
Gentoro
- javascript
0
GitHub Stars
javascript
Language
4 months ago
First Indexed
3 weeks 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": {
"mcp-mirror-gentoro-gt_mcp-nodejs-server": {
"command": "npx",
"args": [
"-y",
"@gentoro/mcp-nodejs-server"
],
"env": {
"GENTORO_API_KEY": "YOUR_API_KEY",
"GENTORO_BASE_URL": "https://your-gentoro-host",
"GENTORO_BRIDGE_UID": "YOUR_BRIDGE_UID"
}
}
}
}The Gentoro MCP Server lets Claude interact with Gentoro bridges and all underlying capabilities, enabling you to access data sources and actions defined in Gentoro from your MCP client with centralized, controllable tool access.
How to use
You connect your MCP client to the Gentoro MCP Server to access tools and data sources exposed by Gentoro bridges. The server runs as a stdio endpoint, which means you interact with it locally through a running process that starts other commands and passes messages through standard input and output. Your client can request available capabilities, execute actions, and receive results as structured responses. You can enable or disable tools per design from Gentoro’s bridge configuration, giving you precise control over what is accessible through Claude.
To use this server effectively, ensure you have a Gentoro account and an API key, define your bridge in Gentoro Studio, and then integrate the MCP server with Claude by starting it through the provided command. The server is intended to run in an environment where the necessary environment variables are available and securely stored.
How to install
Prerequisites you need before installation:
- Node.js and npm installed on your machine (Node.js 14+ recommended). You can verify installation with
node -vandnpm -v.
Steps to install and run the Gentoro MCP Server locally are below. Follow them in sequence to ensure a working setup.
-
Install the MCP server package globally or locally as part of your project setup.
-
Prepare a configuration file that defines the MCP server connection for Claude using the stdio approach shown in the integration snippet.
Additional notes
Configuration and security considerations: Use a dedicated Gentoro API key with scoped permissions for your bridge. Store keys securely and never commit them to public source control. Define your Gentoro bridge UID and base URL in the environment where the MCP server runs.
Integration snippet for Claude configuration (stdio): the server is started via a runtime command that launches the MCP nodejs server with the needed environment variables. Include your actual API key, bridge UID, and Gentoro base URL when configuring your environment.
{
"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>"
}
}
}
}