What is OE MCP Server?
OE MCP Server is a standalone binary that implements the Model Context Protocol (MCP) and exposes your enterprise data sources as tools that AI apps can use directly.
Connect Claude Code, Cursor, Windsurf, or Claude Desktop to your PostgreSQL database, local filesystem, GitHub, Slack, Google Drive, SSH servers, and more ā without writing any integration code.
- No code. Define connectors in a single YAML file.
- 45+ connector categories. 2,600+ enterprise systems supported out of the box.
- Two transport modes.
--stdio for Claude Code VS Code / desktop apps; --serve for Cursor, Windsurf, and cloud deployments.
- Persistent memory. Built-in
memory_set / memory_get / memory_list / memory_delete tools ā context survives across sessions.
- Self-hosted. Runs on your own machine. No cloud dependency. Own your data.
Download
Quick Start
1. Download the binary for your OS
2. Create your config file (oe-mcp.yaml)
connectors:
- name: my-postgres
type: postgresql
host: localhost
port: 5432
database: mydb
user: postgres
password: secret
- name: my-codebase
type: filesystem
basePath: /home/user/projects/myapp
memory:
- key: project_context
value: "This is our main application database."
3. Connect your AI app ā see sections below for Claude Code, Cursor, and Windsurf.
Claude Code (VS Code Extension)
Claude Code launches the binary automatically as a child process via stdio. No manual server start needed.
Add to ~/.mcp.json (or your workspace .mcp.json):
{
"mcpServers": {
"oe-mcp": {
"type": "stdio",
"command": "/path/to/oe-mcp-win.exe",
"args": ["--stdio", "/path/to/oe-mcp.yaml"]
}
}
}
Windows example:
"command": "C:\\oe-mcp\\oe-mcp-win.exe",
"args": ["--stdio", "C:\\oe-mcp\\oe-mcp.yaml"]
Reload VS Code ā the MCP tools appear automatically in Claude Code.
Cursor / Windsurf / Claude Desktop (HTTP mode)
Start the server manually, then point your AI app at the URL.
oe-mcp-win.exe --serve --port 4040 oe-mcp.yaml
In Cursor settings ā MCP ā Add server:
http://localhost:4040/mcp
In Claude Desktop claude_desktop_config.json:
{
"mcpServers": {
"oe-mcp": {
"url": "http://localhost:4040/mcp"
}
}
}
Cloud Deployment (MCP as a Service)
Deploy oe-mcp-linux to any cloud server ā AWS EC2, fly.io, Railway, DigitalOcean ā and multiple developers connect to it via URL. No binary needed on each developer machine.
./oe-mcp-linux --serve --port 4040 /etc/oe-mcp/oe-mcp.yaml
Each developer adds to their Cursor / Windsurf:
http://your-server.com:4040/mcp
Config File Reference (oe-mcp.yaml)
connectors:
- name: <display-name>
type: <connection-type>
memory:
- key: <key>
value: <value>
Example ā Multiple Connectors
connectors:
- name: production-db
type: postgresql
host: db.company.com
port: 5432
database: production
user: readonly
password: secret
- name: company-github
type: github
token: ghp_...
- name: team-slack
type: slack
botToken: xoxb-...
- name: source-code
type: filesystem
basePath: /home/user/projects
memory:
- key: team
value: "Platform Engineering"
- key: environment
value: "production"
Each connector exposes a set of tools prefixed with the connector name. Examples:
| Connector | Tools |
|---|
postgresql / mysql / mongodb | query ā run SQL or aggregation queries |
filesystem | list_dir, read_file, write_file, append_file, delete_file, make_dir, file_info, search_files |
github | list_repos, get_file, create_issue, list_issues, list_prs, get_pr, search_code |
slack | list_channels, post_message, get_messages, get_thread |
ssh | execute_command, upload_file, download_file, list_files |
gdrive | list_files, get_file, create_file, update_file, search_files |
rest-api | request ā any HTTP method against any endpoint |
Built-in memory tools available in every session:
| Tool | Description |
|---|
memory_set | Store a key-value pair that persists across sessions |
memory_get | Retrieve a stored value by key |
memory_list | List all stored key-value pairs |
memory_delete | Remove a stored key |
Memory is stored in oe-mcp-memory.json next to your oe-mcp.yaml and survives restarts.
Example usage in Claude Code:
"Remember that our main database is on prod-db.company.com"
ā Claude calls memory_set with key main_db_host and value prod-db.company.com
Connector Catalog
2,600+ connectors across 45+ categories:
| Category | Examples |
|---|
| SQL Databases | PostgreSQL, MySQL, MSSQL, Oracle, SQLite, Snowflake, BigQuery, Redshift |
| NoSQL / Cache | MongoDB, Redis, Elasticsearch, DynamoDB, Cassandra |
| Object Storage | AWS S3, GCS, Azure Blob, MinIO, Cloudflare R2 |
| Cloud Drives | Google Drive, OneDrive, Dropbox, Box |
| Filesystem | Local directories ā list, read, write, search |
| Email | Gmail, Outlook, Zoho Mail, SMTP |
| Team Messaging | Slack, Microsoft Teams, Discord, Telegram |
| CRM / Productivity | HubSpot, Salesforce, Notion, Airtable |
| Issue Tracking | GitHub, Jira, GitLab, Linear |
| REST API | Any HTTP/REST endpoint |
| GraphQL | Any GraphQL endpoint |
| SSH / SFTP | Remote command execution, file transfer |
| Message Queues | Kafka, AWS SQS, Google Pub/Sub, RabbitMQ |
| Search | Perplexity, Google Search, Bing |
| LDAP / Directory | Active Directory, OpenLDAP |
| OCR / Vision | Azure Vision, Google Vision, AWS Textract |
| Image Generation | OpenAI, FLUX, Stable Diffusion |
| Speech & Audio | ElevenLabs, OpenAI TTS, Azure Speech |
| Web3 / Blockchain | Ethereum, Polygon, Solana |
| Helpdesk | Zendesk, Freshdesk, ServiceNow |
| + more | Healthcare (FHIR), ERP (SAP), Marketing, Analytics, ... |
Binary vs Node.js mode
The standalone binary works for all connector categories except Oracle, MSSQL, SQLite, and Snowflake ā these use native C++ addons that cannot be bundled into a single executable.
If you need any of these four, run with Node.js instead:
git clone https://github.com/openenterprise-info/open-enterprise-ai-mcp-server.git
cd open-enterprise-ai-mcp-server/server
yarn install
node mcp/index.js --stdio /path/to/oe-mcp.yaml
node mcp/index.js --serve --port 4040 /path/to/oe-mcp.yaml
All other connectors (PostgreSQL, MySQL, MongoDB, Redis, S3, Slack, GitHub, REST API, SSH, filesystem, etc.) work directly with the binary ā no Node.js required.
Sample Configs
Download oe-mcp-samples.zip for ready-to-use configs:
postgres Ā· mysql Ā· mongodb Ā· github Ā· slack Ā· gdrive Ā· ssh Ā· filesystem Ā· oracle Ā· multi-connector
Each sample includes the complete oe-mcp.yaml with setup instructions in comments.
Transport Modes
| Mode | Flag | Best for |
|---|
| stdio | --stdio | Claude Code VS Code extension, Claude Desktop ā binary launched as child process automatically |
| HTTP | --serve | Cursor, Windsurf, cloud deployments, multiple developers sharing one server |
Both modes are supported in the same binary ā just pass the appropriate flag.
Part of Open Enterprise
OE MCP Server is part of the Open Enterprise platform.
License
Apache-2.0 ā free to use, modify, and deploy for any purpose, including commercial use.
No usage limits. No telemetry. No call-home.