MCP-Books-Service
This project demonstrates the implementation of Model Context Protocol (MCP) in a blog application system.
MCP Blog Project
This project demonstrates the implementation of Model Context Protocol (MCP) in a blog application system. It consists of three main components that work together to provide a seamless integration between language models and structured data operations.
Project Structure
.
āāā books-mcp-server/ # TypeScript MCP server implementation
ā āāā build/ # Compiled JavaScript files
ā āāā src/ # Source TypeScript files
ā āāā package.json # Server dependencies and scripts
āāā books-mock-service/ # Mock service for book data
ā āāā server.js # Express.js mock server
āāā mcp-client/ # Python MCP client implementation
āāā client.py # Main client application
Components
1. Books MCP Server
A TypeScript-based MCP server that handles the communication protocol between the client and the mock service.
- Built with TypeScript for type safety
- Uses
@modelcontextprotocol/sdk
for MCP implementation - Runs on stdio transport layer
2. Books Mock Service
A simple Express.js server that simulates a book data service.
- Provides mock endpoints for book-related operations
- Built with Express.js
- Lightweight and easy to extend
3. MCP Client
A Python-based client that integrates with language models using the MCP protocol.
- Uses
langchain_ollama
for LLM integration - Implements MCPAgent for handling queries
- Provides an interactive CLI interface
Setup Instructions
- Books MCP Server Setup
cd books-mcp-server
npm install
npm run build
- Books Mock Service Setup
cd books-mock-service
npm install
npm run dev
- MCP Client Setup
cd mcp-client
# Create and activate virtual environment (recommended)
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install dependencies (requirements.txt needed)
pip install langchain-ollama mcp-use
Usage
- Start the mock service:
cd books-mock-service
npm run dev
- In a new terminal, run the client:
cd mcp-client
python client.py
- Enter your queries when prompted. Type 'exit' to quit.
Development
- The MCP server is built using TypeScript. Make changes in the
src
directory and rebuild usingnpm run build
- The mock service can be extended by adding new routes in
server.js
- The client can be customized by modifying the LLM configuration in
client.py
Dependencies
- Node.js and npm for the MCP server and mock service
- Python 3.x for the client
- Ollama for local LLM support
- Various npm packages as specified in package.json files
- Python packages: langchain-ollama, mcp-use
Related MCP Servers
View all developer_tools servers ācontext7
by upstash
Context7 MCP provides up-to-date, version-specific documentation and code examples directly into your prompt, enhancing the capabilities of LLMs by ensuring they use the latest information.
git-mcp
by idosal
GitMCP is a free, open-source, remote Model Context Protocol (MCP) server that transforms GitHub projects into documentation hubs, enabling AI tools to access up-to-date documentation and code.
exa-mcp-server
by exa-labs
A Model Context Protocol (MCP) server allows AI assistants to use the Exa AI Search API for real-time web searches in a secure manner.
Sequential Thinking
by modelcontextprotocol
An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process.
Everything MCP Server
by modelcontextprotocol
The Everything MCP Server is a comprehensive test server designed to demonstrate the full capabilities of the Model Context Protocol (MCP). It is not intended for production use but serves as a valuable tool for developers building MCP clients.
gateway
by centralmind
CentralMind Gateway is a tool designed to expose databases to AI agents via MCP or OpenAPI protocols, providing secure, LLM-optimized APIs.
mcpdoc
by langchain-ai
MCP LLMS-TXT Documentation Server provides a structured way to manage and retrieve LLM documentation using the Model Context Protocol.