{"id":27644941,"url":"https://github.com/cploutarchou/mcp-servers","last_synced_at":"2026-04-07T09:31:49.596Z","repository":{"id":289533503,"uuid":"971581224","full_name":"cploutarchou/mcp-servers","owner":"cploutarchou","description":"Production-ready Model Context Protocol (MCP) servers in Python, Go, and Rust for VS Code integration. Enables AI systems to interact with tools via standardized interfaces.","archived":false,"fork":false,"pushed_at":"2025-04-23T19:03:27.000Z","size":46,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-28T08:54:36.132Z","etag":null,"topics":["ai-tools","developer-tools","fastapi","golang","mcp-protocol","model-context-protocol","python","rust","terraform","vscode-integration"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cploutarchou.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-23T18:32:30.000Z","updated_at":"2025-05-06T10:44:37.000Z","dependencies_parsed_at":"2025-04-23T19:55:22.890Z","dependency_job_id":null,"html_url":"https://github.com/cploutarchou/mcp-servers","commit_stats":null,"previous_names":["cploutarchou/mcp-servers"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cploutarchou/mcp-servers","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cploutarchou%2Fmcp-servers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cploutarchou%2Fmcp-servers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cploutarchou%2Fmcp-servers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cploutarchou%2Fmcp-servers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cploutarchou","download_url":"https://codeload.github.com/cploutarchou/mcp-servers/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cploutarchou%2Fmcp-servers/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31507990,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-tools","developer-tools","fastapi","golang","mcp-protocol","model-context-protocol","python","rust","terraform","vscode-integration"],"created_at":"2025-04-24T00:59:12.506Z","updated_at":"2026-04-07T09:31:49.577Z","avatar_url":"https://github.com/cploutarchou.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MCP Servers\n\nA collection of Model Context Protocol (MCP) servers implemented in different programming languages for use with VS Code and other MCP clients.\n\n## Overview\n\nThis repository contains MCP server implementations in three languages:\n\n| Server | Status | Description |\n|--------|--------|-------------|\n| [Python MCP Server](./python/) | ✅ Production Ready | FastAPI-based MCP server with comprehensive features |\n| [Go MCP Server](./go/) | ⚠️ In Progress | Go-based MCP server using centralmind/gateway |\n| [Rust MCP Server](./rust/) | ⚠️ In Progress | Terraform-focused MCP server using tfmcp |\n\n## What is MCP?\n\nThe Model Context Protocol (MCP) is a protocol designed for communication between AI agents and tools/services. It enables AI systems to interact with various tools and services through a standardized interface.\n\n## Getting Started\n\n### Prerequisites\n\n- Docker and Docker Compose\n- VS Code (for client integration)\n\n### Running the Servers\n\nTo run all servers:\n\n```bash\ndocker-compose up\n```\n\nTo run only the Python server (recommended for production use):\n\n```bash\ndocker-compose up mcp-python\n```\n\n## Server Status\n\n### Python MCP Server (✅ Production Ready)\n\nThe Python MCP server is fully operational and production-ready:\n\n- Implements the complete Model Context Protocol\n- Provides SSE and JSON-RPC endpoints\n- Includes comprehensive error handling and logging\n- Features Prometheus metrics for monitoring\n- Includes health checks for container orchestration\n\n**Endpoints:**\n- `GET /health` - Health check endpoint\n- `GET /sse` - Server-Sent Events endpoint for real-time communication\n- `POST /` - Main MCP endpoint for JSON-RPC requests\n\n### Go MCP Server (⚠️ In Progress)\n\nThe Go MCP server is currently in development:\n\n- Implements the core MCP protocol features\n- Uses PostgreSQL for database operations\n- Provides JSON-RPC and SSE endpoints\n- Includes advanced code assistance features:\n  - Code completion for multiple languages\n  - Code analysis and diagnostics\n  - Documentation lookup\n- Requires further testing and optimization\n\n**Endpoints:**\n- `GET /sse` - SSE endpoint (needs further configuration)\n- `GET /` - API documentation\n\n### Rust MCP Server (⚠️ In Progress)\n\nThe Rust MCP server requires further development:\n\n- Based on the tfmcp tool for Terraform integration\n- Currently doesn't fully support the HTTP interface needed for MCP\n- Requires further investigation and potentially custom development\n\n## VS Code Integration\n\nVS Code can connect to the MCP servers using the SSE/HTTP MCP Protocol. Add the following to your VS Code settings.json:\n\n```json\n{\n  \"mcp.python.serverUrl\": \"http://localhost:8080\",\n  \"mcp.python.enableAutoConnect\": true\n}\n```\n\n## Contributing\n\nContributions are welcome! Here are some ways you can contribute:\n\n- Improve the existing server implementations\n- Add new server implementations in other languages\n- Enhance documentation and examples\n- Report bugs and suggest features\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcploutarchou%2Fmcp-servers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcploutarchou%2Fmcp-servers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcploutarchou%2Fmcp-servers/lists"}