@gaussai/mcp
v1.1.0
Published
MCP proxy for Gauss data analysis platform
Downloads
6
Maintainers
Readme
@gaussai/mcp
MCP (Model Context Protocol) proxy for Gauss data analysis platform. This package enables Claude Desktop and Claude Code to connect to your Gauss MCP server through a lightweight Node.js proxy.
Installation & Usage
Claude Desktop
Add this to your Claude Desktop configuration:
{
"mcpServers": {
"gauss-sse": {
"command": "npx",
"args": ["@gaussai/mcp"],
"env": {
"GAUSS_SSE_URL": "https://app.gaussdata.ai:8080",
"GAUSS_API_KEY": "mcp_key_YOUR_KEY_HERE"
}
}
}
}Environment Variables
GAUSS_SSE_URL: Your Gauss SSE server URL (default:http://localhost:8080)GAUSS_API_KEY: Your Gauss MCP API key (must start withmcp_key_)
Features
- 🚀 Zero Setup: Run with
npx- no installation required - 🔄 Retry Logic: Automatic retry with exponential backoff
- 🔐 Secure: Bearer token authentication with validation
- 📊 Logging: Comprehensive error logging and debugging
- ⚡ Fast: Lightweight Node.js implementation
API Key Generation
- Navigate to your Gauss web interface
- Go to Admin → MCP Settings → API Keys
- Click "Generate New Key"
- Copy the generated key (starts with
mcp_key_) - Use it in your configuration
Troubleshooting
"Invalid API key" Error
- Verify your API key starts with
mcp_key_ - Check if the key has expired
- Ensure the key is active in Gauss settings
Connection Issues
- Verify your
GAUSS_SSE_URLis correct - Check firewall settings
- Ensure Gauss MCP service is running
Tool Errors
- Some tools may be disabled by administrators
- Check tool configuration in Gauss web interface
- Verify user permissions
Development
npm install
npm startLicense
MIT
