NeoDB MCP Server
A Message Control Protocol (MCP) server implementation for interacting with NeoDB, a social book cataloging service. This server provides tools to fetch user information, search books, and retrieve detailed book information through NeoDB’s API.
Setup
Install UV
First, install UV package installer:
curl -LsSf https://astral.sh/uv/install.sh | sh
Create Virtual Environment
Create and activate a Python virtual environment using UV:
uv venv
source .venv/bin/activate # On Unix/macOS
# or
.venvScriptsactivate # On Windows
Install Dependencies
Install project dependencies using UV:
uv pip install .
Available Tools
The server provides the following tools:
get-user-info
- Gets current user’s basic information
- No parameters required
search-books
- Searches items in the catalog
- Parameters:
query(string): Search query for books
get-book
- Gets detailed information about a specific book
- Parameters:
book_id(string): The ID of the book to retrieve
Usage with Claude Desktop
Get Access Token
There are two ways to get your access token:
Using the official guide: Follow the official documentation to obtain your access token.
Using automated script: You can use the neodb-get-access-token script which provides a simplified way to get your access token.
Update Config claude_desktop_config.json
{
"mcpServers": {
"neodb": {
"command": "uv",
"args": [
"--directory",
"<PATH_TO_PROJECT_DIR>",
"run",
"<PATH_TO_SCRIPT>",
"<API_BASE> e.g. https://neodb.social",
"<ACCESS_TOKEN>"
]
}
}
}
Where:
<API_BASE>: The base URL for the NeoDB API<ACCESS_TOKEN>: Your NeoDB API access token
License
This project is licensed under the MIT License - see the LICENSE file for details.
NeoDB
Project Details
- xytangme/neodb-mcp
- MIT License
- Last Updated: 3/11/2025
Recomended MCP Servers
MCP server hosted using Azure Functions
A Model Context Protocol for reading todos and writing todos and projects in the macOS app Things3 using...
A powerful MCP Server that enables AI assistants like Claude to interact with humans through intuitive GUI dialogs....
An MCP server that provides LLMs access to other LLMs
MCP harness for PyTorch HUD API https://hud.pytorch.org/
Take your gaming experience to the next level with this MCP server for Clash of Clans.
Prometheus exporter that scrapes meta information about a ceph cluster.
A high-performance Model Context Protocol (MCP) server for Trino implemented in Go.
基于 FastAPI 和 MCP(模型上下文协议),实现 AI 模型与开发环境 之间的标准化上下文交互,提升 AI 应用的可扩展性和可维护性。





