io.github.wenRou21/sqlbot-mcp-proxy
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FEISHU_ASK_ACCESS_KEY | No | Fallback access key name | |
| FEISHU_ASK_SECRET_KEY | No | Fallback secret key name | |
| SQLBOT_MCP_PROXY_BASE_URL | No | SQLBot service base URL | http://127.0.0.1:8000 |
| SQLBOT_MCP_PROXY_HTTP_HOST | No | HTTP mode host | 127.0.0.1 |
| SQLBOT_MCP_PROXY_HTTP_PATH | No | HTTP mode JSON-RPC path | /mcp |
| SQLBOT_MCP_PROXY_HTTP_PORT | No | HTTP mode port | 8787 |
| SQLBOT_MCP_PROXY_ACCESS_KEY | No | SQLBot API access key | |
| SQLBOT_MCP_PROXY_SECRET_KEY | No | SQLBot API secret key | |
| SQLBOT_MCP_PROXY_HTTP_TIMEOUT_MS | No | SQLBot HTTP request timeout | 120000 |
| SQLBOT_MCP_PROXY_DOCKER_CONTAINER | No | Container used for fallback key lookup | sqlbot |
| SQLBOT_MCP_PROXY_REPORT_OUTPUT_DIR | No | Directory for generated fallback SVG reports | outputs |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| sqlbot_list_datasourcesB | List SQLBot datasources available to the configured SQLBot API key. |
| sqlbot_list_tablesC | List checked SQLBot metadata tables for a datasource. |
| sqlbot_describe_tableC | Describe checked fields for a SQLBot metadata table. |
| sqlbot_ask_dataC | Ask SQLBot a natural-language data question through the existing Text-to-SQL pipeline. |
| sqlbot_generate_reportA | Generate a SQLBot data report with analysis, conclusion, and chart. Falls back to a local SVG chart/report when SQLBot chart generation fails or times out. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
All five tools have clearly distinct purposes: asking questions, describing table fields, generating reports, listing datasources, and listing tables. No overlap in functionality.
All tool names follow a consistent 'sqlbot_verb_noun' pattern using snake_case, e.g., ask_data, describe_table, generate_report. The naming is uniform and predictable.
With 5 tools, the set is well-scoped for a proxy that provides core SQLBot functionalities: data querying, metadata exploration, and reporting. Not too few or too many.
The tool surface covers essential operations: datasource and table discovery, natural language querying, table description, and report generation. Minor gap: no tool for modifying resources (e.g., updating datasources), but the set is comprehensive for typical use cases.