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: about 1 month 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 (4 months ago)
- Default Branch: main
- Last Pushed: 2024-12-12T15:11:52.000Z (4 months ago)
- Last Synced: 2025-03-15T19:18:03.839Z (about 1 month ago)
- Language: TypeScript
- Size: 42 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mcp-servers - Gentoro - Gentoro generates MCP Servers based on OpenAPI specifications. (Community Servers)
- Awesome-MCP-Servers-directory - Gentoro - Gentoro generates MCP Servers based on OpenAPI specifications (Other Tools and Integrations)
- awesome-mcp-servers - Gentoro - Integration layer between MCP Clients and Gentoro MCP Server implementation (Table of Contents / Other Tools and Integrations)
- awesome-mcp-servers - Gentoro - Integration layer between MCP Clients and Gentoro MCP Server implementation (Table of Contents / Other Tools and Integrations)
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](https://gentoro.com) website to request an account and start using Gentoro services.2. Create a Gentoro API Key
Once you have an account, create an API key to authenticate with the Gentoro services.3. Define a Bridge
Using Gentoro Studio, define your bridge with all the tools and data sources required.### Integrate Gentoro with Claude
Add the following to your `claude_desktop_config.json`:
```json
{
"mcpServers": {
"gentoro": {
"command": "npx",
"args": [
"-y",
"@gentoro/mcp-nodejs-server"
],
"env": {
"GENTORO_API_KEY": "",
"GENTORO_BRIDGE_UID": "",
"GENTORO_BASE_URL": ""
}
}
}
}
```