MCP Servers

Active
GitHub TypeScript NOASSERTION

Description

MCP Servers provides a large collection of reusable Model Context Protocol server implementations, giving agents standardized tool capabilities.

Key Features

  • Official reference implementations - authoritative server collection maintained by the MCP steering group showcasing protocol features and SDK usage
  • Multi-language SDK support - 10 SDKs available: TypeScript, Python, Go, Rust, Java, Kotlin, C#, Ruby, Swift, PHP
  • Core reference servers - Everything (testing), Fetch (web scraping), Filesystem, Git, Memory (knowledge graph), Sequential Thinking, Time
  • Claude Desktop integration - complete MCP client configuration examples ready to use with Claude Desktop
  • Education-oriented design - serves as learning reference and best practice for developers building custom MCP servers

Use Cases

💡 Learn MCP protocol core concepts and server development patterns
💡 Quickly add file system, Git, web fetching and other standard tool capabilities to AI apps
💡 Use as templates and reference implementations for building custom MCP servers
💡 Configure MCP tool extensions in Claude Desktop to enhance AI assistant capabilities
💡 Test MCP client compatibility using the Everything reference server

Strengths & Limitations

Strengths

  • Actively maintained, recent updates
  • High community interest (89.6k stars)
  • Responsive to issues, low backlog

⚠️ Limitations

  • No clear open-source license

Categories

Quick Start

# Start the Memory server (TypeScript)
npx -y @modelcontextprotocol/server-memory

# Start the Git server (Python)
uvx mcp-server-git --repository /path/to/repo

# Use in Claude Desktop configuration:
# claude_desktop_config.json
{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/files"]
    }
  }
}

Related Projects

Awesome Claude Skills

72.6k · Python
Active A

A curated list of awesome Claude Skills, resources and tools for customizing Claude AI workflows.

mcptoolspython +1
  • · 1000+ production-ready skills - Covering 9 categories including document processing, dev tools, data analysis, marketing, and writing
  • · Cross-agent compatible - Works with Claude Code, Claude.ai, OpenAI Codex, Cursor, Gemini CLI, Windsurf and more
  • · Progressive loading architecture - Each skill loads only name and description (~100 tokens), full content on demand, hundreds coexist

Open MCP Client

1.6k · TypeScript
Active A

An open-source MCP client that provides unified access to Model Context Protocol tools, enabling integration of any MCP server into AI applications with simplified tool calling.

mcptypescripttools +1
  • · Open-source MCP client for unified access to Model Context Protocol tools
  • · Integrates any MCP server into AI applications with simplified tool calling
  • · Separate frontend and agent architecture for clean separation of concerns

Awesome LLM Skills

1.5k · Python
Normal C

A curated list of awesome LLM and AI Agent Skills, resources and tools for customising AI Agent workflows. Works with Claude Code, Codex, Gemini CLI and custom agents.

agenttoolsmcp +2
  • · Curated collection of LLM skills for Claude Code, Codex, Gemini CLI, and more
  • · Covers document processing (docx, pdf, pptx, xlsx), development tools, and research workflows
  • · Cross-platform compatibility with Anthropic, OpenAI, Google, and Alibaba AI tools

Blender MCP

25.9k · Python
Active A+

MCP server for Blender that enables AI agents to directly control the 3D modeling software for natural language-driven scene creation, model manipulation, and rendering automation.

mcptoolsagent +1
  • · Bidirectional communication — Blender addon creates socket server, MCP Server bridges AI and Blender
  • · 3D object manipulation — create, modify, delete 3D objects in Blender via natural language
  • · Material and rendering control — natural language application of materials, colors, lighting, render settings

Related Articles