if macbook or linux If the network is slow, you can set up a domestic mirror source. Method 1: On the setting page of cherry-studio, click on the MCP server, then click "Add Server", and subsequently configure it on the page. Method 2: Use the configuration parameters
Add this skill
npx mdskills install VmLia/books-mcp-serverSetup instructions are clear, but completely missing any description of capabilities or tools provided
1## Get the Project and Initialize2```3git clone https://github.com/VmLia/books-mcp-server.git4cd books-mcp-server5uv venv6```7if macbook or linux8````9source .venv/bin/activate10````11if windows12````13.venv\Scripts\activate.bat14````1516### Install Python Packages17```18uv add "mcp[cli]" httpx openai beautifulsoup4 lxml19```20If the network is slow, you can set up a domestic mirror source.21```22uv add "mcp[cli]" httpx openai beautifulsoup4 lxml --index-url https://pypi.tuna.tsinghua.edu.cn/simple23```2425## Example of Using cherry-studio26**Method 1**: On the setting page of cherry-studio, click on the MCP server, then click "Add Server", and subsequently configure it on the page.27### Type28```29STDIO30```31### Command32```33uv34```35### Parameters36```37--directory38# your project dir39run40main.py41```4243**Method 2**: Use the configuration parameters44```45{46 "mcpServers": {47 "books-mcp-server": {48 "name": "books-mcp",49 "type": "stdio",50 "description": "",51 "isActive": true,52 "registryUrl": "",53 "command": "uv",54 "args": [55 "--directory",56 "/Enter your local project directory/books-mcp-server",57 "run",58 "main.py"59 ]60 }61 }62}63```
Full transparency — inspect the skill content before installing.