mcp-community-tools

mcp-community-tools

Enables querying community chatter data and world country information through tools like get_top_10_highest_comments and fetch_countries, designed for integration with GitHub Copilot.

Category
Visit Server

README

MCP Community Tools - Model Context Protocol Server

A professional-grade MCP (Model Context Protocol) server that provides tools for querying community and world databases. Designed with clean architecture patterns and ready for integration with GitHub Copilot.

๐ŸŽฏ Quick Start

1. Connect to GitHub Copilot (3 steps)

See QUICK_START.md for instant setup.

TL;DR:

  1. Open VS Code Settings (Cmd+,)
  2. Add this to settings.json:
{
  "github.copilot.mcp": [
    {
      "name": "mcp-community-tools",
      "command": "${workspaceFolder}/.venv/bin/python3",
      "args": ["${workspaceFolder}/hello_mcp.py"],
      "env": {"PYTHONPATH": "${workspaceFolder}"}
    }
  ]
}
  1. Restart VS Code

2. Ask Copilot

Now you can ask Copilot to use your tools:

  • "Get the top 10 highest comments"
  • "Show me 5 countries from Europe"
  • "Generate a random name"

๐Ÿ“š Available Tools

Tool Description Example
get_random_name() Generate a random name get_random_name()
get_top_10_highest_comments() Get top 10 users by message count Returns: Top 10 chatters
fetch_countries() Query countries by region and limit fetch_countries(region="Asia", limit=5)

๐Ÿ—๏ธ Project Structure

mcp-course/
โ”œโ”€โ”€ hello_mcp.py                    # Main entry point (50 lines - clean!)
โ”œโ”€โ”€ setup-copilot.sh               # Auto-generate config helper
โ”œโ”€โ”€ QUICK_START.md                 # 3-step Copilot integration
โ”œโ”€โ”€ SETUP_COPILOT.md              # Detailed setup guide
โ”œโ”€โ”€ ARCHITECTURE.md                # Design patterns & structure
โ”œโ”€โ”€ INTEGRATION_DIAGRAM.md         # Visual flow diagrams
โ”œโ”€โ”€ REFACTORING_SUMMARY.md         # Before/after comparison
โ”‚
โ”œโ”€โ”€ db_connection/
โ”‚   โ””โ”€โ”€ connection.py              # Database Connection Factory
โ”‚
โ”œโ”€โ”€ repositories/
โ”‚   โ”œโ”€โ”€ base_repository.py         # Abstract Base Class
โ”‚   โ”œโ”€โ”€ chatters_repository.py     # Community data queries
โ”‚   โ””โ”€โ”€ countries_repository.py    # World data queries
โ”‚
โ”œโ”€โ”€ tools/
โ”‚   โ””โ”€โ”€ tools.py                   # Tool implementations (DI)
โ”‚
โ””โ”€โ”€ db/
    โ”œโ”€โ”€ community.db               # Chatters data (251 records)
    โ””โ”€โ”€ world.db                   # Countries data (250 records)

โœจ Key Features

๐ŸŽฏ Clean Architecture

  • Repository Pattern: Database access abstraction
  • Dependency Injection: Loose coupling between layers
  • Factory Pattern: Centralized connection management
  • SOLID Principles: All five principles applied

๐Ÿ›ก๏ธ Professional Code

  • โœ… Type hints throughout
  • โœ… Comprehensive error handling
  • โœ… Well-documented with docstrings
  • โœ… Easy to test and extend

๐Ÿš€ Ready for Production

  • โœ… Works with GitHub Copilot
  • โœ… Works with Claude Desktop
  • โœ… Works with any MCP-compatible client
  • โœ… Secure local execution

๐Ÿ“– Documentation

Document Purpose
QUICK_START.md Get Copilot working in 3 steps
SETUP_COPILOT.md Detailed setup & troubleshooting
ARCHITECTURE.md Design patterns & principles
INTEGRATION_DIAGRAM.md Visual flows and connections
REFACTORING_SUMMARY.md Before/after code comparison

๐Ÿš€ Running Locally

Prerequisites

  • Python 3.11+
  • Virtual environment (venv)

Setup

# Clone and enter directory
cd /Users/souravkumar/WebstormProjects/mcp-course

# Activate virtual environment
source .venv/bin/activate

# Install dependencies (if needed)
pip install -r requirements.txt

Run Server

python3 hello_mcp.py

Output should show:

Server started on stdio

๐Ÿ”Œ Integration Options

Option 1: GitHub Copilot in VS Code โœ… RECOMMENDED

See QUICK_START.md

Option 2: Claude Desktop App

See SETUP_COPILOT.md - Claude Desktop section

Option 3: Manual Testing

# Terminal 1: Start server
python3 hello_mcp.py

# Terminal 2: Test tools
curl -X POST http://localhost:3000/call \
  -H "Content-Type: application/json" \
  -d '{"tool": "get_top_10_highest_comments"}'

๐Ÿ’พ Databases

community.db

SELECT * FROM chatters;
-- id, name, messages, last_message_at

251 community members with activity tracking

world.db

SELECT * FROM countries;
-- id, name, iso2, iso3, capital, region, subregion, currency, currency_symbol, phonecode, emoji

250 countries with detailed information


๐Ÿ› ๏ธ Example Usage with Copilot

Example 1: Get Top Commenters

You: "Who are the top 10 most active community members?"

Copilot:
โœ“ Calls: get_top_10_highest_comments()
โœ“ Returns: Top 10 users with message counts
โœ“ Shows: Their last activity timestamps

Example 2: Find Countries

You: "Show me all European countries and their capitals"

Copilot:
โœ“ Calls: fetch_countries(region="Europe")
โœ“ Returns: All 50 European countries
โœ“ Shows: Capital, currency, phone code, flag emoji

Example 3: Generate Names

You: "Give me 5 random names"

Copilot:
โœ“ Calls: get_random_name() (5 times)
โœ“ Returns: 5 random names from the list

๐Ÿ›๏ธ Architecture at a Glance

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚      GitHub Copilot / Claude            โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                   โ”‚ MCP Protocol (JSON-RPC)
                   โ–ผ
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  hello_mcp.py (Tool Registration)       โ”‚
โ”‚  โ”œโ”€ @mcp.tool() decorators             โ”‚
โ”‚  โ””โ”€ Dependency injection setup          โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                   โ”‚
                   โ–ผ
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  tools/tools.py (Business Logic)        โ”‚
โ”‚  โ”œโ”€ TopCommentsTool                    โ”‚
โ”‚  โ”œโ”€ CountriesTool                      โ”‚
โ”‚  โ””โ”€ RandomNameTool                     โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                   โ”‚
                   โ–ผ
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  repositories/ (Data Access)            โ”‚
โ”‚  โ”œโ”€ ChattersRepository                 โ”‚
โ”‚  โ”œโ”€ CountriesRepository                โ”‚
โ”‚  โ””โ”€ BaseRepository (Abstract)          โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                   โ”‚
                   โ–ผ
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  db_connection/ (Connection Factory)    โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                   โ”‚
                   โ–ผ
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  db/ (SQLite Databases)                 โ”‚
โ”‚  โ”œโ”€ community.db                       โ”‚
โ”‚  โ””โ”€ world.db                           โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

๐Ÿ“Š SOLID Principles Applied

โœ… Single Responsibility: Each class has one reason to change
โœ… Open/Closed: Open for extension, closed for modification
โœ… Liskov Substitution: Repositories are interchangeable
โœ… Interface Segregation: Minimal required interfaces
โœ… Dependency Inversion: Depend on abstractions, not concretions


๐Ÿ” Security

  • โœ… Local Execution: Runs on your machine only
  • โœ… No Data Upload: All data stays local
  • โœ… No Authentication: Local database access
  • โœ… Read-Only: Tools only query, don't modify data

๐Ÿงช Testing

Run Tests (when available)

pytest tests/

Manual Testing

from repositories.chatters_repository import ChattersRepository
from db_connection.connection import DatabaseConnection

conn = DatabaseConnection.get_connection("community.db")
repo = ChattersRepository(conn)
results = repo.get_top_highest_comments(10)
print(results)
repo.close()

๐Ÿค Contributing

To add a new tool:

  1. Create a Repository (if needed):

    # repositories/my_data_repository.py
    class MyDataRepository(BaseRepository):
        def get_data(self): 
            return self.execute_query("SELECT * FROM my_table")
    
  2. Create a Tool:

    # In tools/tools.py
    class MyDataTool:
        def __init__(self, repository):
            self.repository = repository
        def execute(self):
            return self.repository.get_data()
    
  3. Register in hello_mcp.py:

    @mcp.tool()
    def my_data_tool() -> list[dict]:
        conn = DatabaseConnection.get_connection("my_db.db")
        repo = MyDataRepository(conn)
        tool = MyDataTool(repo)
        return tool.execute()
    

๐Ÿ“ž Troubleshooting

Common Issues

Issue Solution
"Tool not found" in Copilot Restart VS Code completely (Cmd+Q)
"ModuleNotFoundError" Check PYTHONPATH in config
Connection timeout Verify hello_mcp.py runs without errors
Tools not available Wait 10 seconds after restart for extension load

For detailed troubleshooting, see SETUP_COPILOT.md


๐Ÿ“ License

MIT License - Feel free to use, modify, and distribute.


๐ŸŽ“ Learning Resources


โœ… Quick Checklist


๐Ÿš€ You're Ready!

Your MCP server is production-ready. Enjoy using it with GitHub Copilot! ๐ŸŽ‰

Questions? Check the documentation files or the troubleshooting section above.

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