SQL Anywhere MCP Server
Allows reading a SAP SQL Anywhere database using natural language queries via Claude.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SQL Anywhere MCP ServerShow me the top 10 customers by revenue."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SQL Anywhere MCP Server (read-only)
An MCP server that lets Claude read a SAP SQL Anywhere database and answer questions in plain language — no SQL by hand.
Example: ask "how many customers do we have in Lombardy?" and Claude writes and runs the query for you.
Read-only by design. It can only run
SELECTqueries — it cannot insert, update, delete, or alter anything. See Security.
Requirements
Python 3.10+
The SQL Anywhere ODBC driver and a configured DSN for your database
A dedicated, read-only database user (this project never creates users or changes permissions)
Claude Code or Claude Desktop
Related MCP server: MCP Database Server
Install
git clone https://github.com/TeoDreams/sqlanywhere-mcp-server.git
cd sqlanywhere-mcp-server
pip install -r requirements.txtConfigure
Set four values via a .env file or environment variables.
.env file (copy the template, then edit — it is gitignored):
cp .env.example .envSQLANY_DSN=YOUR_DSN
SQLANY_UID=readonly_user
SQLANY_PWD=your_password
SQLANY_MAX_ROWS=200
SQLANY_QUERY_TIMEOUT=30Or environment variables:
# Windows (PowerShell)
[Environment]::SetEnvironmentVariable("SQLANY_DSN", "YOUR_DSN", "User")
[Environment]::SetEnvironmentVariable("SQLANY_UID", "readonly_user", "User")
[Environment]::SetEnvironmentVariable("SQLANY_PWD", "your_password", "User")# Linux / macOS
export SQLANY_DSN=YOUR_DSN
export SQLANY_UID=readonly_user
export SQLANY_PWD=your_passwordAdd to Claude
Claude Code — pick a scope:
# Global: available in all your projects
claude mcp add --scope user sqlanywhere-readonly -- python /path/to/sqlanywhere_mcp_server.py
# Project: only this repo, shared with the team via a committed .mcp.json
claude mcp add --scope project sqlanywhere-readonly -- python /path/to/sqlanywhere_mcp_server.py
claude mcp listThe default scope (local, if you omit --scope) registers the server only for you in the
current project. Credentials stay out of a committed .mcp.json because they come from your
environment variables / .env, not the command.
Claude Desktop — add this to the config file (%APPDATA%\Claude\claude_desktop_config.json
on Windows, ~/Library/Application Support/Claude/claude_desktop_config.json on macOS,
~/.config/Claude/claude_desktop_config.json on Linux), then restart the app:
{
"mcpServers": {
"sqlanywhere-readonly": {
"command": "python",
"args": ["/path/to/sqlanywhere_mcp_server.py"]
}
}
}Usage
Ask Claude things like:
"Describe the structure of the customers table"
"Show me the first rows of the products table"
"How many orders were placed this month?"
"Will this query use an index, or scan the whole table?"
Claude uses the two tools on its own:
Tool | What it does |
| Lists table names (handy for large schemas) |
| Lists tables and columns (structure only, no data) |
| Runs a |
| Shows the execution plan of a |
Security
Only queries starting with
SELECTrun; write/DDL keywords (INSERT,UPDATE,DELETE,DROP,ALTER, etc.) are rejected before connecting.Returned rows are capped (default 200). This caps the response, not the query — the
SELECTstill runs in full on the server. A per-query timeout (SQLANY_QUERY_TIMEOUT, default 30s,0= no limit) aborts queries that run too long.Credentials come only from environment variables or
.env, and are never printed in error messages.
Query plans
explain_query uses SQL Anywhere's EXPLANATION() function, which returns the optimizer's
access plan without executing the query. (GRAPHICAL_PLAN() is deliberately not used —
it can execute the statement to collect statistics.)
SQL Anywhere gates plan access behind a database option that is off by default. If
explain_query reports that plans are unavailable, a DBA must enable it for your read-only user:
SET OPTION readonly_user.QUERY_PLAN_TEXT_ACCESS = ON;Troubleshooting
If
describe_schemareturns nothing, your SQL Anywhere version may expose the schema throughSYS.SYSTAB/SYS.SYSTABCOLinstead of theSYS.SYSTABLE/SYS.SYSCOLUMNviews used here — adjust the query indescribe_schemaaccordingly.
License
This server cannot be deployed
Maintenance
Related MCP Connectors
Query 40 databases from Claude, ChatGPT, or Cursor — on any device. Read-only, encrypted, audited.
Query your warehouse or a CSV with Claude/ChatGPT over MCP, governed by table-level ACL + audit.
Query your org's data in natural language — read-only MCP access to SQL, NoSQL, files & warehouses.
GA4, Google Ads and Search Console in Claude. Read-only OAuth, multi-account for agencies.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceProvides Claude Desktop with secure access to multiple database connections, allowing users to query MySQL, PostgreSQL, SQLite, and SQL Server databases directly through natural language.-
- AlicenseNot gradedqualityDmaintenanceProvides Claude with direct access to databases including SQLite, SQL Server, PostgreSQL, and MySQL, enabling execution of SQL queries and table management through natural language.676 npm1MIT
- AlicenseNot gradedqualityDmaintenanceEnables Claude to connect to and interact with SQLite, SQL Server, PostgreSQL, and MySQL databases through natural language. Supports executing queries, managing tables, exporting data, and storing business insights with authentication options including AWS IAM.676 npmMIT
- AlicenseNot gradedqualityCmaintenanceEnables Claude Desktop to interact with MySQL, PostgreSQL, and Redis databases using natural language for data querying and schema analysis. It provides a secure interface with a default read-only mode to prevent unauthorized database modifications.48 npm926MIT