Skip to main content
Glama

XuguDB MCP Server

PyPI Version Python Version License Code style: black 中文文档

A Model Context Protocol (MCP) server for XuguDB (虚谷数据库) with full DDL/DML support, multi-LLM provider integration, and Chat2SQL (natural language to SQL) capabilities.

📖 中文文档 (中文版) | English

Features

  • Full Database Operations: Support for SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER, DROP

  • Schema Introspection: List tables, describe table structure, view relationships

  • Chat2SQL: Convert natural language queries to SQL using LLMs (Claude, OpenAI, local models)

  • Multi-LLM Support: Flexible LLM provider configuration (Claude, OpenAI, zAI/Zhipu, Local/Ollama)

  • Connection Pooling: Efficient database connection management

  • Audit Logging: Comprehensive operation logging for security

  • Query Optimization: EXPLAIN support and optimization suggestions

Installation

Prerequisites

IMPORTANT Python Version Requirement: This project requires Python 3.6 through 3.11 (Python 3.12+ is NOT currently supported due to XuguDB driver compatibility).

  • Python 3.6, 3.7, 3.8, 3.9, 3.10, or 3.11 (3.11 recommended)

  • XuguDB database instance

  • (Optional) LLM API key for Chat2SQL features

If your Python version is incorrect, use the automatic setup scripts below - they will automatically install and configure the correct Python version for you!

The project provides automatic setup scripts that will check and configure your environment:

Windows

# Run the setup script
.\scripts\setup.ps1

macOS / Linux

# Make script executable (first time only)
chmod +x scripts/setup.sh

# Run the setup script
./scripts/setup.sh

The setup script will:

  • ✅ Check if uv is installed (install if missing)

  • ✅ Check if Python 3.11 is available (install via uv if missing)

  • ✅ Create virtual environment with correct Python version

  • ✅ Install all dependencies

  • ✅ Verify the installation

After setup completes:

# Activate virtual environment
# Windows:
.venv\Scripts\Activate.ps1

# macOS/Linux:
source .venv/bin/activate

# Start the MCP server
python main.py

Python Version Management

CRITICAL: This project requires Python 3.6 through 3.11. Python 3.12+ is NOT supported.

Quick Check:

python --version  # Should be 3.6-3.11

If your Python version is incorrect, use our automatic setup:

# Option 1: After pip install - Run the setup checker
xugu-mcp-setup

# Option 2: For source installation - Run the setup script
# Windows
.\scripts\setup.ps1
# macOS/Linux
./scripts/setup.sh

These commands will:

  • ✅ Check and install uv if needed

  • ✅ Install Python 3.11 automatically

  • ✅ Set up virtual environment

  • ✅ Install all dependencies


Manual Setup (Advanced)

If you prefer manual setup, use one of these tools:

Tool

Platform

Commands

uv (Recommended)

All

uv python install 3.11

pyenv

macOS/Linux

pyenv install 3.11.9 && pyenv local 3.11.9

pyenv-win

Windows

pyenv install 3.11.9 && pyenv global 3.11.9

conda

All

conda create -n xugu-mcp python=3.11 && conda activate xugu-mcp

For more Python version management help:

# Direct installation
pip install xugu-mcp

# Or using uv
uv pip install xugu-mcp

After installation, check your environment:

# One-click environment check and setup guide
xugu-mcp-setup

The xugu-mcp-setup command will:

  • ✅ Check if your Python version is supported (3.6-3.11)

  • ✅ Provide step-by-step instructions if your environment needs setup

  • ✅ Guide you through installing uv and the correct Python version

If your Python version is supported, you can use directly:

# Stdio mode
xugu-mcp

# HTTP/SSE mode
xugu-mcp-http

Option 2: Install from Source

# Clone the repository
git clone https://github.com/xugudb/xugu-mcp.git
cd xugu-mcp

# Run the setup script (recommended)
# Windows:
.\scripts\setup.ps1
# macOS/Linux:
./scripts/setup.sh

The setup script will:

  • ✅ Check and install uv if needed

  • ✅ Install Python 3.11 automatically

  • ✅ Create virtual environment

  • ✅ Install all dependencies


After setup completes:

# Activate virtual environment
# Windows:
.venv\Scripts\Activate.ps1
# macOS/Linux:
source .venv/bin/activate

# Start the MCP server
uv run xugu-mcp

Claude Desktop Configuration for Source Installation:

{
  "mcpServers": {
    "xugu": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "E:\\workspace\\xugu-mcp\\xugu-mcp",
        "xugu-mcp"
      ],
      "env": {
        "XUGU_DB_HOST": "your_database_host",
        "XUGU_DB_PORT": "5138",
        "XUGU_DB_DATABASE": "SYSTEM",
        "XUGU_DB_USER": "SYSDBA",
        "XUGU_DB_PASSWORD": "your_password"
      }
    }
  }
}

Note: Update --directory path to your actual project location.

Configuration

Environment Variables

Copy .env.example to .env and configure:

cp .env.example .env

Key configuration:

# Database
XUGU_DB_HOST=localhost
XUGU_DB_PORT=5138
XUGU_DB_DATABASE=SYSTEM
XUGU_DB_USER=SYSDBA
XUGU_DB_PASSWORD=your_password

# LLM (for Chat2SQL)
CHAT2SQL_MODE=lightweight  # 'lightweight' (default, no API key) or 'standalone' (requires API key)
LLM_PROVIDER=claude  # or openai, zai, zhipu, local, ollama
LLM_MODEL=claude-3-5-sonnet-20241022
LLM_API_KEY=your_api_key  # Only required for standalone mode
LLM_BASE_URL=  # Optional custom API URL
LLM_TEMPERATURE=0.0
LLM_MAX_TOKENS=4096

Config File

You can also use config/config.yaml for configuration (overrides by env vars).

LLM Providers

The server supports multiple LLM providers for Chat2SQL features:

Provider

Description

Default Model

API Key Required

claude

Anthropic Claude

claude-3-5-sonnet-20241022

Yes

openai

OpenAI GPT

gpt-4o-mini

Yes

zai

zAI (Zhipu AI / 智谱)

glm-4

Yes

zhipu

Same as zai

glm-4

Yes

local

Local models via Ollama

llama3.2

No

ollama

Same as local

llama3.2

No

Provider-specific notes:

  • zAI/Zhipu: API base URL defaults to https://open.bigmodel.cn/api/paas/v4/

  • Local/Ollama: Expects Ollama running at http://localhost:11434/v1/

Chat2SQL Modes:

Lightweight Mode (Default)

  • No LLM API key required

  • MCP provides schema context and SQL validation

  • Your existing LLM (Claude in Claude Desktop, etc.) generates the SQL

  • Lower latency, better context awareness

  • Set CHAT2SQL_MODE=lightweight (or leave unset, as it's the default)

Standalone Mode

  • Requires LLM_API_KEY to be configured

  • MCP generates SQL using internal LLM

  • Useful for API-only access or when client-side LLM is not available

  • Set CHAT2SQL_MODE=standalone and configure LLM_API_KEY

Chat2SQL Requirements by Mode:

Mode

API Key Required

Use Case

lightweight

No

Claude Desktop, local development with LLM

standalone

Yes

API-only access, remote servers

General Notes:

  • Other database operations (query, schema, DML, DDL) work without any LLM configuration

  • Cloud providers (claude, openai, zai, zhipu) require LLM_API_KEY for standalone mode

  • Local providers (local, ollama) do not require API key but need Ollama running

Available models:

  • Claude: claude-3-5-sonnet, claude-3-5-haiku, claude-3-opus

  • OpenAI: gpt-4o, gpt-4o-mini, gpt-4-turbo, gpt-3.5-turbo

  • zAI: glm-4, glm-4-plus, glm-4-air, glm-4-flash

  • Local: llama3.2, qwen2.5, mistral, codellama, gemma

Usage

Running the Server

The XuguDB MCP Server supports two transport modes for different use cases:


Mode 1: Stdio Mode (Local Development)

Best for: Local development, Claude Desktop integration

Transport: Standard input/output (stdio)

Startup command:

# Using PyPI installed version (recommended)
xugu-mcp

# Or with uv (source installation)
uv run xugu-mcp

# Or directly with Python
python -m xugu_mcp.main

How it works:

  • Runs as a local subprocess

  • Communicates via stdin/stdout

  • Used by Claude Desktop for local MCP connections

  • No network port required


Mode 2: HTTP/SSE Mode (Remote/Network)

Best for: Remote servers, network access, multiple clients

Transport: HTTP with Server-Sent Events (SSE)

Startup command:

# Set environment variables
export XUGU_DB_HOST=your_database_host
export XUGU_DB_PORT=5138
export XUGU_DB_DATABASE=SYSTEM
export XUGU_DB_USER=SYSDBA
export XUGU_DB_PASSWORD=your_password

# Optional: Configure HTTP server
export HTTP_SERVER_HOST=0.0.0.0    # Listen on all interfaces
export HTTP_SERVER_PORT=8000       # HTTP port

# Start HTTP server (PyPI installed version)
xugu-mcp-http

# Or with uv (source installation)
uv run xugu-mcp-http

# Or directly with Python
python -m xugu_mcp.http_server

HTTP Server will start on: http://0.0.0.0:8000 (default)

HTTP Endpoints:

  • SSE Connection: http://your-host:8000/sse - Server-Sent Events for streaming

  • Message POST: http://your-host:8000/messages/ - Client message endpoint

HTTP Server Configuration Options:

# Server binding
HTTP_SERVER_HOST=0.0.0.0          # 0.0.0.0 for all interfaces, 127.0.0.1 for local only
HTTP_SERVER_PORT=8000             # HTTP port number

# Security (optional)
HTTP_SERVER_ENABLE_CORS=false     # Enable CORS for web clients
HTTP_SERVER_ENABLE_AUTH=false     # Enable authentication
HTTP_SERVER_AUTH_TOKEN=token      # Authentication token

# Endpoints (usually no need to change)
HTTP_SERVER_SSE_ENDPOINT=/sse     # SSE connection endpoint
HTTP_SERVER_MESSAGE_ENDPOINT=/messages/  # Message POST endpoint

Mode Comparison

Feature

Stdio Mode

HTTP/SSE Mode

Transport

Standard I/O

HTTP (SSE)

Use Case

Local development

Remote/network access

Command

xugu-mcp

xugu-mcp-http

Port Required

No

Yes (default: 8000)

Remote Access

No

Yes

Multiple Clients

No

Yes

Claude Desktop

✅ Native support

✅ Via URL

Configuration

claude_desktop_config.json

claude_desktop_config_http.json


Claude Desktop Configuration

Config Location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "xugu": {
      "command": "xugu-mcp",
      "env": {
        "XUGU_DB_HOST": "your_database_host",
        "XUGU_DB_PORT": "5138",
        "XUGU_DB_DATABASE": "SYSTEM",
        "XUGU_DB_USER": "SYSDBA",
        "XUGU_DB_PASSWORD": "your_password"
      }
    }
  }
}

For source installation, change "command": "xugu-mcp" to:

"command": "uv",
"args": ["run", "--directory", "/path/to/xugu-mcp", "xugu-mcp"]

HTTP/SSE Mode (Remote/Network)

{
  "mcpServers": {
    "xugu": {
      "url": "http://127.0.0.1:8000/sse",
      "transport": "sse"
    }
  }
}

Note: Start the HTTP server before launching Claude Desktop:

XUGU_DB_HOST=your_host XUGU_DB_PASSWORD=your_password xugu-mcp-http

Both Modes

{
  "mcpServers": {
    "xugu-local": {
      "command": "xugu-mcp",
      "env": {
        "XUGU_DB_HOST": "your_database_host",
        "XUGU_DB_PORT": "5138",
        "XUGU_DB_DATABASE": "SYSTEM",
        "XUGU_DB_USER": "SYSDBA",
        "XUGU_DB_PASSWORD": "your_password"
      }
    },
    "xugu-remote": {
      "url": "http://127.0.0.1:8000/sse",
      "transport": "sse"
    }
  }
}

Quick Start Examples

Local Development (Stdio)

# Install
pip install xugu-mcp

# Check environment
xugu-mcp-setup

# Start server
xugu-mcp

# For source installation, use: uv run xugu-mcp

Remote Server (HTTP/SSE)

# Set environment variables
export XUGU_DB_HOST=your_host
export XUGU_DB_PASSWORD=your_password
export HTTP_SERVER_PORT=8000

# Start HTTP server
xugu-mcp-http

# Test endpoint
curl http://localhost:8000/sse

# For source installation, use: uv run xugu-mcp-http

Testing & Verification

Verify Installation

# Check if installation was successful
xugu-mcp --help  # or
xugu-mcp-http --help

# Check version
pip show xugu-mcp

Test Database Connection

# Test using environment variables
export XUGU_DB_HOST=your_database_host
export XUGU_DB_PORT=5138
export XUGU_DB_DATABASE=SYSTEM
export XUGU_DB_USER=SYSDBA
export XUGU_DB_PASSWORD=your_password

# Stdio mode test (should start and wait for MCP messages)
xugu-mcp

# HTTP mode test
xugu-mcp-http

# In another terminal, test HTTP endpoint
curl http://localhost:8000/sse

Test in Claude Desktop

  1. Configure Claude Desktop (see configuration examples above)

  2. Restart Claude Desktop

  3. Try in Claude conversation:

    • "List all tables"

    • "Show table structure"

    • "Execute a SELECT query"

Troubleshooting

Python Version Issues

Problem: Python version is 3.12+ or not in the 3.6-3.11 range

This is the most common issue! XuguDB driver (xgcondb) only supports Python 3.6-3.11.

Quick Solutions:

# Option 1: After pip install
xugu-mcp-setup

# Option 2: For source installation
./scripts/setup.sh  # or .\scripts\setup.ps1 on Windows

For manual setup options, see Python Version Management above.


Installation Issues

Problem: pip install xugu-mcp fails

# Try upgrading pip
pip install --upgrade pip

# Use uv for installation (faster and more reliable)
pip install uv
uv pip install xugu-mcp

# Or install from source
git clone https://github.com/xugudb/xugu-mcp.git
cd xugu-mcp
uv sync

Problem: Command xugu-mcp not found

# Check if Python scripts path is in PATH
python -m site --user-base

# Add to PATH (macOS/Linux)
export PATH="$HOME/.local/bin:$PATH"

# Or use full path
python -m xugu_mcp.main

# Or use uv to run
uv run xugu-mcp

Connection Issues

Problem: Cannot connect to database

# Check if database is reachable
telnet your_database_host 5138

# Check firewall settings
# Ensure XuguDB service is running

# Verify credentials
export XUGU_DB_HOST=your_database_host
export XUGU_DB_PORT=5138
export XUGU_DB_DATABASE=SYSTEM
export XUGU_DB_USER=SYSDBA
export XUGU_DB_PASSWORD=your_password

Problem: Claude Desktop cannot connect to MCP server

# Check stdio mode
xugu-mcp

# Check Claude Desktop logs
# macOS: ~/Library/Logs/Claude/
# Windows: %APPDATA%\Claude\logs

# Verify config file path
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Port Already in Use

# Find and kill process using port 8000
lsof -ti:8000 | xargs kill -9

# Or use a different port
export HTTP_SERVER_PORT=8001
xugu-mcp-http

Connection Refused

# Check if HTTP server is running
curl http://localhost:8000/sse

# Check server logs for errors
# Make sure XUGU_DB_* variables are set correctly

Stdio Mode Not Responding

# Verify the command works
xugu-mcp

# Check Python version (requires 3.11+)
python --version

# Reinstall if needed
pip install --force-reinstall xugu-mcp

# Or reinstall from source
git clone https://github.com/xugudb/xugu-mcp.git
cd xugu-mcp
uv sync

Getting Help

If issues persist, please:

  1. Check GitHub Issues

  2. Submit a new issue with:

    • Operating system version

    • Python version

    • Error messages

    • Configuration file contents (with sensitive info removed)

MCP Tools

Query Execution

Tool

Description

execute_query

Execute SELECT query with optional limit

explain_query

Get query execution plan

execute_batch

Execute multiple queries in transaction

Schema Introspection

Tool

Description

list_tables

List all tables with metadata

describe_table

Get detailed table structure

get_table_stats

Get table statistics (row count, size)

list_indexes

List indexes for tables

get_foreign_keys

Get foreign key relationships

search_tables

Search tables by name pattern

list_views

List all database views

list_columns

Get detailed column information

DML Operations

Tool

Description

insert_rows

Insert single or multiple rows

update_rows

Update rows matching WHERE clause

delete_rows

Delete rows matching WHERE clause

upsert_rows

Insert or update rows (UPSERT)

truncate_table

Truncate table (fast delete all)

bulk_import

Bulk import data in batches

DDL Operations

Tool

Description

create_database

Create a new database

drop_database

Drop a database

create_schema

Create a new schema

drop_schema

Drop a schema

create_table

Create a new table with columns and constraints

drop_table

Drop a table with optional cascade

alter_table

Alter table structure (add/drop/alter columns)

create_index

Create an index on a table

drop_index

Drop an index

create_view

Create a view from SELECT statement

drop_view

Drop a view

backup_table

Create a backup copy of a table

Chat2SQL Operations

Chat2SQL supports two modes:

Lightweight Mode (Default)

  • No LLM API key required - Uses your existing LLM (Claude in Claude Desktop, etc.)

  • MCP provides schema context and validation only

  • Lower latency, better context awareness

Tool

Description

get_schema_for_llm

Get database schema for LLM to generate SQL

validate_sql_only

Validate SQL security and syntax

execute_validated_sql

Execute validated SELECT queries

get_table_schema_for_llm

Get detailed table schema

suggest_sql_from_schema

Validate and improve user SQL

get_lightweight_mode_info

Get lightweight mode information

Standalone Mode

  • Requires LLM_API_KEY - MCP generates SQL using internal LLM

  • Useful for API-only access

Tool

Description

natural_language_query

Convert natural language to SQL and execute

explain_sql

Explain SQL query in natural language

suggest_query

Suggest SQL for natural language question

validate_sql

Validate SQL with security checks

optimize_query

Get optimization suggestions

fix_sql

Fix SQL based on error message

get_schema_context

Get relevant schema for query

clear_schema_cache

Clear schema cache

get_schema_info

Get schema cache information

Security & Audit

Tool

Description

get_audit_log

Get recent audit log entries

get_audit_statistics

Get audit statistics for recent period

get_rate_limit_stats

Get rate limiter statistics

list_roles

List all available roles

get_role_details

Get details of a specific role

check_permission

Check if a role has permission for an operation

get_security_status

Get overall security status

Admin & Management

Tool

Description

health_check

Perform health check on the MCP server

get_server_metrics

Get comprehensive server metrics

get_connections

Get database connection pool information

test_query

Test database connectivity

get_server_info

Get server information and configuration

reload_config

Reload configuration

get_query_history

Get recent query history from audit log

clear_all_caches

Clear all server caches

diagnose_connection

Diagnose database connection issues

Database Info

Tool

Description

get_database_info

Get database version and info

MCP Resources

Resource URI

Description

schema://database/tables

Complete table catalog

schema://database/info

Database metadata

schema://database/relationships

Foreign key relationships

schema://database/indexes

All database indexes

schema://database/views

All view definitions

schema://database/table/{name}

Specific table schema

meta://database/info

Database version and config

meta://database/stats

Database statistics

Development Status

Completed ✅

  • Phase 1: Foundation framework

    • Project structure with all directories

    • Configuration management with Pydantic

    • Database connection manager with transactions

    • Logging and error handling utilities

    • Basic MCP server with query tools

  • Phase 2: Query tools and Schema introspection

    • 13 MCP tools (query, schema, database info)

    • 8 MCP resources (tables, relationships, indexes, views, metadata)

    • Schema exploration tools (indexes, foreign keys, views)

  • Phase 3: DML Operations

    • 6 DML tools (insert, update, delete, upsert, truncate, bulk_import)

    • Single row and batch operations

    • Parameterized WHERE clause support

    • Batch processing for large datasets

  • Phase 4: DDL Operations

    • 8 DDL tools (create_table, drop_table, alter_table, create_index, drop_index, create_view, drop_view, backup_table)

    • Table and index management

    • View creation and management

    • Table backup functionality

  • Phase 5: LLM Integration

    • 4 LLM providers (Claude, OpenAI, zAI/Zhipu, Local/Ollama)

    • LLM base interface and provider factory

    • Support for streaming responses

    • Multi-model support per provider

  • Phase 6: Chat2SQL Engine

    • 9 Chat2SQL tools (NL to SQL, explain, validate, optimize, fix)

    • Schema manager with intelligent caching

    • SQL validator with security checks

    • SQL sanitizer for injection prevention

    • Prompt builder with few-shot learning

  • Phase 7: Security & Audit

    • 7 Security & Audit tools (audit log, statistics, roles, permissions)

    • Comprehensive audit logging for all operations

    • Rate limiting with sliding window and token bucket

    • Role-based access control (5 predefined roles)

    • Query execution hooks (pre/post/error)

    • Per-client rate limiting

    • Slow query tracking

  • Phase 8: Production Readiness

    • 9 Admin & Management tools (health check, metrics, diagnostics)

    • System metrics collection (CPU, memory, disk usage)

    • Database connection pool monitoring

    • Query history retrieval from audit log

    • Cache management

    • Connection diagnostics

    • Server information retrieval

In Progress 🚧

Planned 📋

HTTP Deployment

Production Deployment

For production deployment, it's recommended to use:

  1. Reverse Proxy: Use Nginx or Traefik as a reverse proxy

  2. Process Manager: Use systemd, supervisor, or PM2

  3. SSL/TLS: Enable HTTPS for secure communication

Example Nginx Configuration

upstream xugu_mcp {
    server localhost:8000;
}

server {
    listen 443 ssl;
    server_name your-domain.com;

    ssl_certificate /path/to/cert.pem;
    ssl_certificate_key /path/to/key.pem;

    location /sse {
        proxy_pass http://xugu_mcp;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_buffering off;
        proxy_cache off;
        proxy_set_header Connection '';
        proxy_http_version 1.1;
        chunked_transfer_encoding off;
    }

    location /messages/ {
        proxy_pass http://xugu_mcp;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
    }
}

Example Systemd Service

[Unit]
Description=XuguDB MCP HTTP Server
After=network.target

[Service]
Type=simple
User=xugu
WorkingDirectory=/path/to/xugu-mcp
Environment="PATH=/path/to/uv/.local/bin"
ExecStart=/path/to/uv/.local/bin/uv run xugu-mcp-http
Restart=always
RestartSec=10

[Install]
WantedBy=multi-user.target

Docker Deployment

Create a Dockerfile:

FROM python:3.11-slim

WORKDIR /app

COPY . .

RUN pip install --no-cache-dir uv && \
    uv pip install --system -e .

ENV HTTP_SERVER_HOST=0.0.0.0
ENV HTTP_SERVER_PORT=8000

EXPOSE 8000

CMD ["uv", "run", "xugu-mcp-http"]

Build and run:

docker build -t xugu-mcp .
docker run -d -p 8000:8000 --env-file .env xugu-mcp

Monitoring

The HTTP server exposes several endpoints for monitoring:

  • Health Check: Use the health_check tool

  • Metrics: Use the get_server_metrics tool

  • Audit Log: Use the get_audit_log tool

Example using curl:

# Health check (if you add a dedicated HTTP endpoint)
curl http://your-host:8000/health

# Get server metrics via MCP tool
# (This requires an MCP client)

Development

Project Structure

xugu-mcp/
├── src/xugu_mcp/
│   ├── main.py              # MCP server entry point (stdio mode)
│   ├── http_server.py       # MCP server entry point (HTTP/SSE mode)
│   ├── config/              # Configuration management
│   ├── db/                  # Database connection & operations
│   ├── llm/                 # LLM provider implementations
│   ├── chat2sql/            # Chat2SQL engine
│   ├── mcp_tools/           # MCP tool implementations
│   ├── mcp_resources/       # MCP resource implementations
│   ├── security/            # Security & audit
│   └── utils/               # Utilities
├── config/                  # Configuration files
├── tests/                   # Test suite
└── pyproject.toml           # Project configuration

Running Tests

uv run pytest

Code Quality

# Format code
uv run black src/

# Lint
uv run ruff check src/

# Type check
uv run mypy src/

Security

  • SQL Injection Prevention: Parameterized queries and input validation

  • Audit Logging: All database operations are logged

  • Rate Limiting: Configurable query rate limits

  • Connection Security: SSL/TLS support for database connections

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

References

A
license - permissive license
-
quality - not tested
C
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/LeoKuPo/xugu-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server