obshell-mcp
August 14, 2025 ยท View on GitHub
English | Chinese
obshell-mcp
A MCP server for obshell provided by the OceanBase Community.
Quick Start
- Install uv (Python package manager), see the uv repo for install methods.
uvx obshell-mcpto start the mcp server.
cursor
Go to Cursor -> Preferences -> Cursor Settings -> MCP -> Add new global MCP Server to include the following configuration:
{
"mcpServers": {
"obshell-mcp": {
"command": "uvx",
"args": [
"obshell-mcp",
],
}
}
}
or if you want to start the server with sse, you can add the following configuration:
{
"mcpServers": {
"obshell-mcp": {
"command": "uvx",
"args": [
"obshell-mcp",
"--sse",
"8000"
],
}
}
}
Environment Variables
The following environment variables can be configured:
| Variable | Description | Default Value |
|---|---|---|
| OBSHELL_HOST | The host of the obshell server | 127.0.0.1 |
| OBSHELL_PORT | The port of the obshell server | 2886 |
| CLUSTER_NAME | The name of the obcluster | cluster |
| SYS_PASSWORD | The password of the root user of sys tenant | password |
Contributing
Issues and Pull Requests are welcome to improve this project.
License
See LICENSE for more information.