https://github.com/siddontang/tidb-ai-mcp
A MCP demo to interact with https://tidb.ai
https://github.com/siddontang/tidb-ai-mcp
Last synced: 3 months ago
JSON representation
A MCP demo to interact with https://tidb.ai
- Host: GitHub
- URL: https://github.com/siddontang/tidb-ai-mcp
- Owner: siddontang
- Created: 2025-03-07T22:22:04.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-03-09T19:16:11.000Z (7 months ago)
- Last Synced: 2025-04-30T17:56:19.529Z (5 months ago)
- Language: Go
- Size: 9.77 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TiDB AI MCP Server
A Model Control Protocol (MCP) server that allows Cursor to ask questions to TiDB AI.
## Features
- Allows Cursor to ask questions to TiDB AI
- Uses stdio transport for communication with Cursor
- Simple command-line interface## Installation
```bash
go get github.com/siddontang/tidb-ai-mcp
```## Usage
```bash
# Run the server with stdio transport
./tidb-ai-mcp
```## Building
```bash
go build -o tidb-ai-mcp
```## Using with Cursor
To use this MCP server with Cursor:
1. Build the server: `go build -o tidb-ai-mcp`
2. In Cursor, configure the MCP server as a stdio tool by adding it to your Cursor settings
3. Specify the path to the `tidb-ai-mcp` binary in your Cursor configuration
4. You can now ask questions to TiDB AI directly from Cursor using the stdio transport## License
MIT