Raj Assistant MCP
Allows database operations with MongoDB, such as CRUD.
Enables AI chat using local Ollama models.
Provides AI chat capabilities using OpenAI's models.
Allows database operations with PostgreSQL, including queries and management.
Allows database operations with SQLite.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Raj Assistant MCPwhat's the weather in Tokyo?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
🤖 Raj Assistant MCP
A modular Model Context Protocol (MCP) server built with Python. This project is designed to work with MCP Inspector and other MCP-compatible clients.
What is implemented
Calculator: add, subtract, multiply, divide, percentage
Date/time with IANA timezones
Current weather using Open-Meteo
News using NewsData.io
Currency conversion using Frankfurter
Gemini AI chat
PDF, DOCX, TXT, MD, CSV, XLSX and basic image file reading
Local RAG document indexing and semantic search with ChromaDB
Clean service/tool separation
Environment-based configuration
Basic tests
Related MCP server: MCP Server For Local
Architecture
MCP Client / Inspector
|
v
server.py
|
+-------------------+
| |
MCP Tools Services
| |
+---------+---------+
|
External APIs / Chroma
|
Local files1. Setup on Windows
python -m venv .venv
.venv\Scripts\Activate.ps1
python -m pip install --upgrade pip
pip install -r requirements.txt
copy .env.example .envEdit .env and add your own NEWS_API_KEY and GEMINI_API_KEY.
Security: The old uploaded project contained API keys in
.env. Rotate/revoke those keys and never commit.envto Git.
2. Run normally
python server.pyThe MCP server uses stdio, so it may appear to wait without printing a normal web page.
3. Run MCP Inspector
mcp dev server.pyThen open the Inspector URL printed in the terminal.
If you get ModuleNotFoundError, activate the virtual environment in the same PowerShell window before running the command.
4. Tools
Calculator
addsubtractmultiplydividepercentage
Date/time
current_datecurrent_timecurrent_datetime
Default timezone is Asia/Kolkata. You can pass another IANA timezone such as UTC or America/New_York.
Weather
get_current_weather(latitude=21.1702, longitude=72.8311)Open-Meteo does not require an API key.
News
Requires NEWS_API_KEY.
top_news(topic="technology", country="in", limit=5)Currency
convert_currency(amount=100, from_currency="USD", to_currency="INR")Uses Frankfurter's public exchange-rate API.
AI chat
Requires GEMINI_API_KEY.
chat(message="Explain MCP in simple words")Documents
read_document(path="C:\\path\\to\\file.pdf")
index_document(path="C:\\path\\to\\file.pdf")
search_knowledge(query="What is this document about?", top_k=5)Supported: PDF, DOCX, TXT, MD, CSV, XLSX, JSON and basic image metadata.
5. Project structure
project_mcp/
├── .env.example
├── config.py
├── server.py
├── requirements.txt
├── README.md
├── tools/
│ ├── calculator.py
│ ├── chat.py
│ ├── currency.py
│ ├── datetime.py
│ ├── documents.py
│ ├── news.py
│ ├── rag.py
│ └── weather.py
├── services/
│ ├── ai_service.py
│ ├── currency_service.py
│ ├── document_service.py
│ ├── rag_service.py
│ ├── news_service.py
│ └── weather_service.py
└── tests/Next stage: AI Agent
The MCP server is now a strong tool layer. An AI Agent should normally live in an MCP client/agent application that:
discovers tools with
tools/listsends the available tools to the model
lets the model choose a tool
calls the selected MCP tool with
tools/callfeeds the result back to the model
repeats until the final answer is ready
This keeps the MCP server focused on reliable capabilities instead of mixing agent orchestration into every tool.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management.…
Trade 16 crypto exchanges + MetaTrader 5 from your AI assistant via one MCP connection.
The Telnyx MCP server is an official implementation of the Model Context Protocol that enables AI clients (like Claude Desktop, Cursor, and OpenAI Agents) to interact with Telnyx's telephony, messaging, and AI assistant APIs. It provides comprehensive capabilities including making and managing phone calls, sending SMS/MMS messages, purchasing and configuring phone numbers, creating AI assistants with custom instructions, managing cloud storage buckets, scraping and embedding website content, and handling integration secrets. The server exists as both a local implementation and a remotely hosted version, allowing developers to integrate real-world communication infrastructure directly into AI applications.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA versatile Model Context Protocol server that enables AI assistants to manage calendars, track tasks, handle emails, search the web, and control smart home devices.23-
- AlicenseCqualityFmaintenanceA customizable Model Context Protocol server implementation that enables AI models to interact with external tools including weather queries, Google search, and camera control functionality.114Apache 2.0
- AlicenseNot gradedqualityCmaintenanceEmpowers AI assistants with real-world capabilities including note management, Gmail integration, Google Calendar and Tasks management, and Git repository operations through the Model Context Protocol.13MIT
- FlicenseNot gradedqualityDmaintenanceA comprehensive demonstration server that provides tools for calculations, weather, and note management alongside an interactive web interface. It showcases how AI assistants can seamlessly interact with external data sources and functions using the Model Context Protocol.-