MCP REST API and CLI Client
A simple REST API and CLI client to interact with Model Context Protocol (MCP) servers.
Key Features
1. MCP-Compatible Servers
- Supports any MCP-compatible servers servers.
- Pre-configured default servers:
- SQLite (test.db has been provided with sample products data)
- Brave Search
- Additional MCP servers can be added in the mcp-server-config.json file
2. Integrated with LangChain
- Leverages LangChain to execute LLM prompts.
- Enables multiple MCP servers to collaborate and respond to a specific query simultaneously.
3. LLM Provider Support
- Compatible with any LLM provider that supports APIs with function capabilities.
- Examples:
- OpenAI
- Claude
- Gemini
- AWS Nova
- Groq
- Ollama
- Essentially all LLM providers are supported as long as they provide a function-based API. Please refer langchain documentation for more details.
Setup
Clone the repository:
git clone https://github.com/rakesh-eltropy/mcp-client.gitNavigate to the Project Directory After cloning the repository, move to the project directory:
cd mcp-clientSet the OPENAI_API_KEY environment variable:
export OPENAI_API_KEY=your-openai-api-keyYou can also set the
OPENAI_API_KEYin the mcp-server-config.json file.You can also set the
providerandmodelin the mcp-server-config.json file. e.g.providercan beollamaandmodelcan bellama3.2:3b.






