sritajkumarpatel/sritaj_info_mcp_server
3.2
If you are the rightful owner of sritaj_info_mcp_server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
Sritaj Info MCP Server is a Model Context Protocol server designed to provide information services efficiently.
Sritaj Info MCP Server
A Model Context Protocol (MCP) server providing information services.
Technologies
- Python: >=3.13
- MCP Framework: mcp[cli] >=1.23.1
- Build System: setuptools
- Package Manager: uv (recommended) or pip
Project Structure
sritaj_info_mcp_server/
├── main.py # Main entry point (optional)
├── pyproject.toml # Project configuration and dependencies
├── README.md # This file
└── src/
└── mcpserver/
├── __init__.py # Package initialization
├── __main__.py # CLI entry point
└── sritaj_info_server.py # Main server implementation
Setup
- Ensure Python >=3.13 is installed.
- Create and activate a virtual environment:
- Using uv (recommended):
To activate the environment (optional, as uv commands work without explicit activation):uv sync # Creates .venv and installs dependencies.venv\Scripts\activate # On Windows - Using venv (alternative):
python -m venv .venv .venv\Scripts\activate # On Windows pip install -e .
- Using uv (recommended):
Running
To run the MCP server:
uv run .\src\mcpserver\__main__.py
This starts the server and makes it available for MCP clients.
Using in VS Code Local MCP Server
To integrate this MCP server with VS Code's local MCP setup, add the following configuration to your VS Code MCP settings file:
"sritaj_info_server": {
"command": "uv",
"args": [
"run",
"{Path}}sritaj_info_mcp_server\\src\\mcpserver\\__main__.py"
],
"env": {}
}
Replace {Path} with the absolute path to your project directory (e.g., C:\\AI\\).
Development
- Edit source files in
src/mcpserver/ - Run tests (if any) after changes
- Update dependencies in
pyproject.tomlas needed