https://github.com/gentoro-gt/mcp-nodejs-server
Integration layer between MCP Clients and Gentoro MCP Server implementation
https://github.com/gentoro-gt/mcp-nodejs-server
Last synced: 7 months ago
JSON representation
Integration layer between MCP Clients and Gentoro MCP Server implementation
- Host: GitHub
- URL: https://github.com/gentoro-gt/mcp-nodejs-server
- Owner: gentoro-GT
- License: apache-2.0
- Created: 2024-12-10T18:19:56.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-03-19T13:17:11.000Z (8 months ago)
- Last Synced: 2025-03-24T18:19:31.444Z (8 months ago)
- Language: TypeScript
- Size: 43.9 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- toolsdk-mcp-registry - ❌ @gentoro/mcp-nodejs-server
- toolsdk-mcp-registry - ❌ @gentoro/mcp-nodejs-server
README
# Gentoro MCP Server
MCP Server for the Gentoro services, enabling Claude to interact with Gentoro bridges and all underlying capabilities.
## Tools
Gentoro allows users to create and integrate tools into a common Bridge, defining all available capabilities.
As this MCP server is fully integrated with Gentoro, the agents, tools and their underlying functionality is fully controlled at the level of Gentoro's bridge which allows you to enable and disable tools per design.
## Setup
1. Create a Gentoro account
Visit the [Gentoro Playground](https://beta.gentoro.com) website to request an account and start using Gentoro services.
Or download and install Gentoro locally, see the [installation guide](https://www.gentoro.com/docs/setup/download).
2. Create a Gentoro API Key
To use this MCP Connector, you will need a Gentoro API Key. You can see the instruction on how to create one [here](https://www.gentoro.com/docs/sdk/gentoro_key).
3. Define a Bridge
Using Gentoro Studio, define your bridge with all the tools and data sources required.
### Integrate Gentoro with Claude or other Agents using NodeJS
Add the following to your `config.json`:
```json
{
"mcpServers": {
"gentoro": {
"command": "npx",
"args": [
"-y",
"@gentoro/mcp-nodejs-server"
],
"env": {
"GENTORO_API_KEY": "",
"GENTORO_BRIDGE_UID": "",
"GENTORO_BASE_URL": ""
}
}
}
}
```
Alternatively, you can use the short version of Gentoro Key:
```json
{
"mcpServers": {
"gentoro": {
"command": "npx",
"args": [
"-y",
"@gentoro/mcp-nodejs-server"
],
"env": {
"GENTORO_KEY": "//",
}
}
}
}
```
These values are url safe, and can be properly generated at Gentoro Studio.