datagovin-mcp-server
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., "@datagovin-mcp-servershow me datasets about agriculture in India"
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.
datagovin-mcp-server
Core server for exposing India’s open government data (data.gov.in) APIs via the Model Context Protocol, powering agentic AI data exploration.
Setup Instructions
Clone the repository
git clone <repo-url>
cd datagovin-mcp-serverCreate a virtual environment
python -m venv venv
source venv/bin/activate # On Windows use `venv\Scripts\activate`Install dependencies
pip install -e .[dev]Configure environment variables
Copy the example environment file to create your own
.envfile.cp .env.example .envOpen the
.envfile and set your Data.gov.in API key.API_KEY=your_actual_api_key_here(Optional) If you have a Redis server running elsewhere, update the
REDIS_HOSTandREDIS_PORTvalues in the.envfile.
Related MCP server: CKAN MCP Server
Development & Testing
Code Quality Checks
Run these commands to ensure code quality and stability.
Task | Command |
Type Checking |
|
Unit Tests |
|
Formatting |
|
Linting |
|
Start the server
You can manually start the server to verify it runs without errors before connecting a client.
python -m datagovin_mcp_server.mainMCP Server Integration & Debugging
There are two ways to interact with and test your MCP server: the MCP Inspector (for debugging) and VS Code (for agent integration).
A. Testing with the MCP Inspector (Debugging)
The MCP Inspector provides an interactive web UI to test your tools, resources, and prompts directly, similar to Postman for REST APIs.
Start the Inspector Proxy The Inspector requires Node.js to run its proxy. This command will launch the web UI in your browser at http://localhost:6274.
npx @modelcontextprotocol/inspector
Assumes that you have Node.js installed. If not, please install it fromnodejs.org.
Connect to Your Server In the Inspector UI, go to the Connection panel on the left and enter the following settings to connect via stdio:
Transport:
stdioCommand: The full absolute path to your Python executable. For example:
E:\Fill\With\Your Own Path\datagovin-mcp-server\.venv\Scripts\python.exeArguments:
-m datagovin_mcp_server.main stdio
The Inspector will automatically start and stop your Python server as needed for testing.
B. Integrating with VS Code (GitHub Copilot)
To allow GitHub Copilot's agent mode to use your server, you must configure a local MCP server connection in VS Code.
Create Configuration File
Create a file named
.vscode/mcp.jsonin your project root to store the workspace-specific configuration.Alternatively, you can use the Command Palette (
Ctrl+Shift+P/Cmd+Shift+P) and select "MCP: Open User Configuration" to add the configuration directly to your workspace settings.Add Server Configuration Paste the following JSON configuration into your newly created
.vscode/mcp.jsonfile. This uses the absolute path to your virtual environment's Python executable.{ "servers": { "datagovin-mcp-server": { "type": "stdio", "command": "E:\\\\Fill\\\\With\\\\Your Own Path\\\\datagovin-mcp-server\\\\.venv\\\\Scripts\\\\python.exe", "args": [ "-m", "datagovin_mcp_server.main", "stdio" ] } }, "inputs": [] }
ACTION REQUIRED: You must update the command value to the absolute path of your Python executable in your local .venv/Scripts directory. The example path above is a placeholder.
Use the Server in Copilot Chat
Ensure the GitHub Copilot extension is installed.
Open Copilot Chat (Ctrl+Alt+I / Cmd+Shift+P -> Copilot Chat).
Switch to Agent Mode.
Click the Tools icon (🛠️) and ensure the datagovin-mcp-server is listed and enabled.
Ask a question that requires your server's tools to test the live agent integration
Contributing
Check out the CONTRIBUTING.md file for guidelines on how to contribute to this project.
This server cannot be deployed
Maintenance
Related MCP Connectors
Gateway between LLM agents and world data through eight tools and a bundled endpoint catalog.
Normalized official data with provenance, aggregations, insights, free samples and agent access.
Normalized official data with provenance, aggregations, insights, free samples and agent access.
Real-world data for agents: air quality, geocoding, quakes, holidays, web search
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with IoT device data from a smart city, including public lighting, water, and gas meters. Supports querying and management via the Model Context Protocol.1MIT
- AlicenseAqualityAmaintenanceEnables AI assistants to search, explore, and query any CKAN open data portal through natural language, making public datasets accessible without requiring knowledge of the portal's API.201,37257MIT

cfabric-mcpofficial
AlicenseNot gradedqualityBmaintenanceEnables AI agents to perform corpus analysis tasks such as discovery, search, and data access via the Model Context Protocol.10MIT- AlicenseNot gradedqualityDmaintenanceEnables AI agents to search and retrieve metadata and data files from Peru's National Open Data Platform, and generate Jupyter notebooks for data analysis.3Apache 2.0