This MCP server provides access to Baidu Vector Database through the Model Context Protocol, allowing AI assistants to interact with vector databases when processing requests.
Before using the Baidu Vector Database MCP Server, ensure you have:
To get started with the MCP server, clone the repository and run it using uv
:
git clone https://github.com/baidu/mochow-mcp-server-python.git
cd mochow-mcp-server-python
You can run the server directly with custom endpoint and API key:
uv run src/mochow_mcp_server/server.py
# Or with custom parameters
uv run src/mochow_mcp_server/server.py --endpoint http://127.0.0.1:8287 --api-key mochow
Alternatively, you can modify the .env
file in the src/mochow_mcp_server/
directory to set environment variables, then run:
uv run src/mochow_mcp_server/server.py
~/Library/Application Support/Claude/claude_desktop_config.json
){
"mcpServers": {
"mochow": {
"command": "/PATH/TO/uv",
"args": [
"--directory",
"/path/to/mochow-mcp-server-python/src/mochow_mcp_server",
"run",
"server.py",
"--endpoint",
"http://127.0.0.1:8287",
"--api-key",
"mochow"
]
}
}
}
mcp.json
:{
"mcpServers": {
"mochow": {
"command": "/PATH/TO/uv",
"args": [
"--directory",
"/path/to/mochow-mcp-server-python/src/mochow_mcp_server",
"run",
"server.py",
"--endpoint",
"http://127.0.0.1:8287",
"--api-key",
"mochow"
]
}
}
}
database_name
database_name
table_name
table_name
table_name
, filter_expr
table_name
, filter_expr
, limit
, output_fields
table_name
, index_name
, field_name
, index_type
, metric_type
, params
table_name
, index_name
table_name
, index_name
table_name
, index_name
table_name
, vector
, vector_field
, limit
, filter_expr
, output_fields
table_name
, index_name
, search_text
, limit
, filter_expr
, output_fields
MOCHOW_ENDPOINT
: Baidu Vector Database connection instance URIMOCHOW_API_KEY
: Baidu Vector Database instance API keyWhen asking Claude "How many databases do I have in the mochow db?", you'll get a response like:
You have 2 databases in your Mochow instance:
1. book
2. test
When asking "I want to get the detail of table named book_segments in database book", Claude will respond with table details including:
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "mochow" '{"command":"/PATH/TO/uv","args":["--directory","/path/to/mochow-mcp-server-python/src/mochow_mcp_server","run","server.py","--endpoint","http://127.0.0.1:8287","--api-key","mochow"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"mochow": {
"command": "/PATH/TO/uv",
"args": [
"--directory",
"/path/to/mochow-mcp-server-python/src/mochow_mcp_server",
"run",
"server.py",
"--endpoint",
"http://127.0.0.1:8287",
"--api-key",
"mochow"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"mochow": {
"command": "/PATH/TO/uv",
"args": [
"--directory",
"/path/to/mochow-mcp-server-python/src/mochow_mcp_server",
"run",
"server.py",
"--endpoint",
"http://127.0.0.1:8287",
"--api-key",
"mochow"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect