- 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-gh_mcp-nodejs-server": {
"command": "npx",
"args": [
"-y",
"@gentoro/mcp-nodejs-server"
],
"env": {
"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 access all underlying capabilities through a configurable MCP endpoint. It centralizes tool integration and access control, so you can enable or disable tools per your Gentoro bridge design and run everything from a single MCP connection.
How to use
You connect to the Gentoro MCP Server through your MCP client by configuring the local MCP settings to load the Gentoro runtime. Once connected, Claude can access Gentoro bridges and the integrated tools defined in your Gentoro Bridge. Your permissions and tool availability are governed by Gentoro, so you can enable or disable specific capabilities from the bridge configuration.
How to install
Prerequisites: ensure you have Node.js installed on your system. You can download Node.js from the official website or use a package manager suitable for your operating system.
-
Create a Gentoro account on the Gentoro website and sign in.
-
Generate a Gentoro API key to authenticate with Gentoro services.
-
Define your Bridge in Gentoro Studio, including all tools and data sources you plan to use.
-
Integrate Gentoro with Claude by updating your client configuration file with the following MCP server entry.
{
"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
The Gentoro MCP Server is designed to be managed through Gentoro’s bridge configuration. You control which tools and capabilities are exposed to Claude by adjusting your Gentoro Bridge in Gentoro Studio. Ensure your API key and bridge UID are kept secure and only exposed to trusted clients.
Configuration example for integration
{
"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>"
}
}
}
}