datagovin-mcp-server

datagovin-mcp-server

Exposes India's open government data (data.gov.in) APIs via the Model Context Protocol, enabling agentic AI data exploration.

Category
Visit Server

README

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-server

Create 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

  1. Copy the example environment file to create your own .env file.

    cp .env.example .env
    
  2. Open the .env file and set your Data.gov.in API key.

    API_KEY=your_actual_api_key_here
    
  3. (Optional) If you have a Redis server running elsewhere, update the REDIS_HOST and REDIS_PORT values in the .env file.

Development & Testing

Code Quality Checks

Run these commands to ensure code quality and stability.

Task Command
Type Checking mypy
Unit Tests pytest
Formatting black .
Linting ruff check

Start the server

You can manually start the server to verify it runs without errors before connecting a client.

python -m datagovin_mcp_server.main

MCP 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.

  1. 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
    

[!NOTE] Assumes that you have Node.js installed. If not, please install it from nodejs.org.

  1. 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: stdio

  • Command: The full absolute path to your Python executable. For example: E:\Fill\With\Your Own Path\datagovin-mcp-server\.venv\Scripts\python.exe

  • Arguments: -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.

  1. Create Configuration File

    Create a file named .vscode/mcp.json in 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.

  2. Add Server Configuration Paste the following JSON configuration into your newly created .vscode/mcp.json file. 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": []
    }
    

[!WARNING] 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.

  1. 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.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured