Skip to content

This is an MCP server used for querying books, and it can be applied in common MCP clients, such as Cherry Studio.

Notifications You must be signed in to change notification settings

VmLia/books-mcp-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Get the Project and Initialize

git clone https://github.com/VmLia/books-mcp-server.git
cd books-mcp-server
uv venv

if macbook or linux

source .venv/bin/activate

if windows

.venv\Scripts\activate.bat

Install Python Packages

uv add "mcp[cli]" httpx openai beautifulsoup4 lxml 

If the network is slow, you can set up a domestic mirror source.

uv add "mcp[cli]" httpx openai beautifulsoup4 lxml --index-url https://pypi.tuna.tsinghua.edu.cn/simple

Example of Using cherry-studio

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.

Type

STDIO

Command

uv

Parameters

--directory
# your project dir
run
main.py

Method 2: Use the configuration parameters

{
  "mcpServers": {
    "books-mcp-server": {
      "name": "books-mcp",
      "type": "stdio",
      "description": "",
      "isActive": true,
      "registryUrl": "",
      "command": "uv",
      "args": [
        "--directory",
        "/Enter your local project directory/books-mcp-server",
        "run",
        "main.py"
      ]
    }
  }
}

About

This is an MCP server used for querying books, and it can be applied in common MCP clients, such as Cherry Studio.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages