SAP MCP Server
Enables AI clients to query live data from SAP HANA and SQL databases through read-only SELECT queries with CSV-formatted results.
README
SAP MCP Server (Python)
A Python-based Model Context Protocol (MCP) Server for SAP HANA and SQL databases. This allows AI clients like Claude Desktop to query live data from SAP systems.
Features
- SAP HANA support via
hdbcli(SAP's official Python client) - Generic SQL support via ODBC for other databases
- Read-only access - Only SELECT queries are allowed
- CSV output - Results formatted for easy AI consumption
- Simple YAML configuration
Prerequisites
- Python 3.10 or higher
- SAP HANA client libraries (for HANA connections)
- ODBC drivers (for ODBC connections)
Installation
1. Clone or download this project
cd D:\_projects\sap-mcp-server-python
2. Install the package
For SAP HANA:
pip install -e ".[hana]"
For ODBC connections:
pip install -e ".[odbc]"
For both:
pip install -e ".[all]"
3. Install SAP HANA Client (for HANA connections)
The hdbcli package requires the SAP HANA Client to be installed:
- Download from SAP Development Tools
- Install the SAP HANA Client
- The
hdbclipackage will be available
Alternatively, install directly via pip (if available):
pip install hdbcli
Configuration
1. Create a configuration file
Copy the example configuration:
cp config.example.yaml config.yaml
2. Edit the configuration
For SAP HANA:
server:
name: sap-hana
prefix: sap_hana
version: "1.0"
connector:
type: hana
host: your-hana-server.example.com
port: 30015
user: SYSTEM
password: your-password
tables: []
For SAP HANA Cloud:
server:
name: hana-cloud
prefix: hana_cloud
version: "1.0"
connector:
type: hana
host: your-instance.hana.ondemand.com
port: 443
user: DBADMIN
password: your-password
encrypt: true
sslValidateCertificate: true
tables: []
For ODBC (SQL Server, etc.):
server:
name: sql-server
prefix: sql
version: "1.0"
connector:
type: odbc
connection_string: "Driver={ODBC Driver 17 for SQL Server};Server=localhost;Database=mydb;UID=user;PWD=password"
tables: []
Running the Server
Standalone test
python -m sap_mcp config.yaml
If the configuration is correct, the server will start and wait for MCP requests via stdin.
With Claude Desktop
-
Edit Claude Desktop's configuration file:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonMac:
~/Library/Application Support/Claude/claude_desktop_config.json -
Add the MCP server configuration:
{
"mcpServers": {
"sap-hana": {
"command": "python",
"args": [
"-m",
"sap_mcp",
"D:\\_projects\\sap-mcp-server-python\\config.yaml"
]
}
}
}
-
Restart Claude Desktop (fully quit and reopen)
-
Look for the MCP tools icon (hammer) in Claude Desktop
Available Tools
Once configured, the AI client will have access to these tools:
| Tool | Description |
|---|---|
{prefix}_get_tables |
List all tables/views in the database |
{prefix}_get_columns |
List columns for a specific table |
{prefix}_run_query |
Execute a SQL SELECT statement |
Example Usage
Ask Claude:
- "What tables are available in SAP HANA?"
- "Show me the columns in the CUSTOMERS table"
- "Get the top 10 orders by value"
Configuration Reference
| Field | Required | Description |
|---|---|---|
server.name |
Yes | Name of the MCP server |
server.prefix |
Yes | Prefix for tool names (e.g., sap_hana) |
server.version |
No | Server version (default: "1.0") |
connector.type |
Yes | Connector type: hana or odbc |
connector.host |
HANA | HANA server hostname |
connector.port |
HANA | HANA server port (default: 30015) |
connector.user |
HANA | Database username |
connector.password |
HANA | Database password |
connector.encrypt |
No | Enable SSL encryption (default: false) |
connector.sslValidateCertificate |
No | Validate SSL cert (default: true) |
connector.connection_string |
ODBC | ODBC connection string |
tables |
No | List of tables to expose (empty = all) |
log_file |
No | Path to debug log file |
Troubleshooting
Server won't start
- Check that Python 3.10+ is installed:
python --version - Verify the package is installed:
pip show sap-mcp-server - Check configuration file syntax:
python -c "import yaml; yaml.safe_load(open('config.yaml'))"
Connection fails
- Test connectivity to your SAP HANA server
- Verify credentials are correct
- For HANA Cloud, ensure
encrypt: trueis set - Check firewall rules allow the port
Tools not showing in Claude Desktop
- Fully quit Claude Desktop (check Task Manager / Activity Monitor)
- Verify the config path in
claude_desktop_config.json - Check for typos in the JSON configuration
- Look at Claude Desktop logs for errors
Debug logging
Enable logging in your config:
log_file: /path/to/debug.log
Then check the log file for detailed information.
Project Structure
sap-mcp-server-python/
├── pyproject.toml # Package configuration
├── config.example.yaml # Example configuration
├── README.md # This file
└── src/sap_mcp/
├── __init__.py
├── __main__.py # Entry point
├── server.py # MCP server setup
├── config.py # Configuration loader
├── csv_utils.py # CSV formatting
├── connectors/
│ ├── base.py # Abstract connector
│ ├── hana.py # SAP HANA connector
│ └── odbc.py # ODBC connector
└── tools/
├── get_tables.py # List tables tool
├── get_columns.py # List columns tool
└── run_query.py # SQL query tool
License
MIT License - See LICENSE file for details.
Credits
Based on the CData MCP Server for SAP Business One.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
E2B
Using MCP to run code via e2b.