> ## Documentation Index
> Fetch the complete documentation index at: https://mcp.vyagent.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 示例服务器

> 服务器示例和实现列表

本页展示了各种模型上下文协议（MCP）服务器，用于演示该协议的功能和多样性。这些服务器使大型语言模型（LLMs）能够安全地访问工具和数据源。

## 参考实现

以下官方参考服务器展示了MCP核心功能和SDK的使用：

### 数据和文件系统

* **[Filesystem](https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem)** - 具有可配置访问控制的安全文件操作
* **[PostgreSQL](https://github.com/modelcontextprotocol/servers/tree/main/src/postgres)** - 具有架构检查功能的只读数据库访问
* **[SQLite](https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite)** - 数据库交互和商业智能功能
* **[Google Drive](https://github.com/modelcontextprotocol/servers/tree/main/src/gdrive)** - Google Drive的文件访问和搜索功能

### 开发工具

* **[Git](https://github.com/modelcontextprotocol/servers/tree/main/src/git)** - 用于读取、搜索和操作Git仓库的工具
* **[GitHub](https://github.com/modelcontextprotocol/servers/tree/main/src/github)** - 仓库管理、文件操作和GitHub API集成
* **[GitLab](https://github.com/modelcontextprotocol/servers/tree/main/src/gitlab)** - 支持项目管理的GitLab API集成
* **[Sentry](https://github.com/modelcontextprotocol/servers/tree/main/src/sentry)** - 从Sentry.io获取和分析问题

### Web和浏览器自动化

* **[Brave Search](https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search)** - 使用Brave的搜索API进行网络和本地搜索
* **[Fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch)** - 为LLM使用优化的Web内容获取和转换
* **[Puppeteer](https://github.com/modelcontextprotocol/servers/tree/main/src/puppeteer)** - 浏览器自动化和网页抓取功能

### 生产力和通信

* **[Slack](https://github.com/modelcontextprotocol/servers/tree/main/src/slack)** - 频道管理和消息功能
* **[Google Maps](https://github.com/modelcontextprotocol/servers/tree/main/src/google-maps)** - 位置服务、路线指引和地点详情
* **[Memory](https://github.com/modelcontextprotocol/servers/tree/main/src/memory)** - 基于知识图谱的持久化记忆系统

### AI和专业工具

* **[EverArt](https://github.com/modelcontextprotocol/servers/tree/main/src/everart)** - 使用各种模型的AI图像生成
* **[Sequential Thinking](https://github.com/modelcontextprotocol/servers/tree/main/src/sequentialthinking)** - 通过思维序列进行动态问题解决
* **[AWS KB Retrieval](https://github.com/modelcontextprotocol/servers/tree/main/src/aws-kb-retrieval-server)** - 使用Bedrock Agent Runtime从AWS知识库检索信息

## 官方集成

以下MCP服务器由各公司为其平台维护：

* **[Axiom](https://github.com/axiomhq/mcp-server-axiom)** - 使用自然语言查询和分析日志、追踪和事件数据
* **[Browserbase](https://github.com/browserbase/mcp-server-browserbase)** - 在云端自动化浏览器交互
* **[Cloudflare](https://github.com/cloudflare/mcp-server-cloudflare)** - 在Cloudflare开发者平台上部署和管理资源
* **[E2B](https://github.com/e2b-dev/mcp-server)** - 在安全的云沙箱中执行代码
* **[Neon](https://github.com/neondatabase/mcp-server-neon)** - 与Neon无服务器Postgres平台交互
* **[Obsidian Markdown Notes](https://github.com/calclavia/mcp-obsidian)** - 在Obsidian知识库中读取和搜索Markdown笔记
* **[Qdrant](https://github.com/qdrant/mcp-server-qdrant/)** - 使用Qdrant向量搜索引擎实现语义记忆
* **[Raygun](https://github.com/MindscapeHQ/mcp-server-raygun)** - 访问崩溃报告和监控数据
* **[Search1API](https://github.com/fatwang2/search1api-mcp)** - 统一的搜索、爬虫和网站地图API
* **[Stripe](https://github.com/stripe/agent-toolkit)** - 与Stripe API交互
* **[Tinybird](https://github.com/tinybirdco/mcp-tinybird)** - 与Tinybird无服务器ClickHouse平台交互

## 社区亮点

不断发展的社区开发服务器生态系统扩展了MCP的功能：

* **[Docker](https://github.com/ckreiling/mcp-server-docker)** - 管理容器、镜像、卷和网络
* **[Kubernetes](https://github.com/Flux159/mcp-server-kubernetes)** - 管理pod、部署和服务
* **[Linear](https://github.com/jerhadf/linear-mcp-server)** - 项目管理和问题追踪
* **[Snowflake](https://github.com/datawiz168/mcp-snowflake-service)** - 与Snowflake数据库交互
* **[Spotify](https://github.com/varunneal/spotify-mcp)** - 控制Spotify播放和管理播放列表
* **[Todoist](https://github.com/abhiz123/todoist-mcp-server)** - 任务管理集成

> **注意：** 社区服务器未经测试，使用时需自行承担风险。它们不隶属于Anthropic，也未得到Anthropic的认可。

要查看完整的社区服务器列表，请访问[MCP服务器仓库](https://github.com/modelcontextprotocol/servers)。

## 入门指南

### 使用参考服务器

基于TypeScript的服务器可以直接使用`npx`：

```bash
npx -y @modelcontextprotocol/server-memory
```

基于Python的服务器可以使用`uvx`（推荐）或`pip`：

```bash
# 使用uvx
uvx mcp-server-git

# 使用pip
pip install mcp-server-git
python -m mcp_server_git
```

### 在Claude中配置

要在Claude中使用MCP服务器，请将其添加到您的配置中：

```json
{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-memory"]
    },
    "filesystem": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/files"]
    },
    "github": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-github"],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
      }
    }
  }
}
```

## 其他资源

* [MCP服务器仓库](https://github.com/modelcontextprotocol/servers) - 参考实现和社区服务器的完整集合
* [Awesome MCP服务器](https://github.com/punkpeye/awesome-mcp-servers) - 精选的MCP服务器列表
* [MCP CLI](https://github.com/wong2/mcp-cli) - 用于测试MCP服务器的命令行检查工具
* [MCP Get](https://mcp-get.com) - MCP服务器的安装和管理工具
* [Supergateway](https://github.com/supercorp-ai/supergateway) - 通过SSE运行MCP stdio服务器

访问我们的[GitHub讨论区](https://github.com/orgs/modelcontextprotocol/discussions)参与MCP社区交流。
