MCP Configs2026年4月7日·1 分钟阅读

Glama — MCP Server Discovery and Management

Directory and management platform for MCP servers. Discover, install, and monitor Model Context Protocol servers for Claude Code, Cline, and other AI coding tools.

Agent 就绪

这个资产会安全暂存

这个资产会先安全暂存。复制的指令会要求 Agent 读取暂存文件,并在激活脚本、MCP 配置或全局配置前先确认。

Stage only · 17/100策略:需暂存
Agent 入口
任意 MCP/CLI Agent
类型
Mcp Config
安装
Stage only
信任
信任等级:Established
入口
Glama — MCP Server Discovery and Management
安全暂存命令
npx -y tokrepo@latest install ef4bec91-e689-4bc2-b4e0-8f665e542224 --target codex

先暂存文件;激活前需要读取暂存 README 和安装计划。

TL;DR
Glama provides a searchable directory of MCP servers with install instructions for Claude Code, Cline, and other AI tools.
§01

What it is

Glama is a discovery and management platform for Model Context Protocol (MCP) servers. It maintains a curated directory of MCP servers that extend AI coding tools like Claude Code and Cline with capabilities such as database access, file system operations, and API integrations.

The platform is aimed at developers who use AI coding assistants and want to find MCP servers by category, read install instructions, and monitor server health. Instead of searching GitHub for individual MCP server repos, Glama aggregates them into a single browsable catalog.

§02

How it saves time or tokens

Finding the right MCP server for a specific integration typically involves searching GitHub, reading multiple READMEs, and comparing configuration formats. Glama consolidates this process into a single search. Each server listing includes standardized install instructions, configuration snippets, and compatibility information.

For teams managing multiple MCP servers, Glama provides monitoring and management features that reduce the overhead of keeping server configurations in sync across developer machines.

§03

How to use

  1. Visit the Glama directory at glama.ai/mcp/servers
  2. Browse MCP servers by category or search by name
  3. Click any server to view install instructions and configuration
  4. Copy the configuration to your .mcp.json or Claude Code settings
{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/dir"]
    }
  }
}
§04

Example

# Search for a PostgreSQL MCP server on Glama
# Then add the config to your project:
cat > .mcp.json << 'EOF'
{
  "mcpServers": {
    "postgres": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-postgres"],
      "env": {
        "DATABASE_URL": "postgresql://user:pass@localhost:5432/mydb"
      }
    }
  }
}
EOF

After adding the configuration, your AI coding tool connects to the MCP server and gains access to the database for schema inspection, query execution, and data exploration.

§05

Related on TokRepo

  • MCP integrations -- Browse specific MCP server configurations for GitHub and other services
  • AI coding tools -- Explore tools that enhance your AI-assisted development workflow
§06

Common pitfalls

  • MCP server configurations vary between AI tools. A config that works in Claude Code may need adjustments for Cline or other clients. Always check the tool-specific instructions on Glama.
  • Some MCP servers require environment variables with credentials. Never commit these to version control. Use .env files or secret managers instead.
  • MCP servers run as local processes. Installing many servers simultaneously increases memory usage. Start with the servers you actively need and add more as required.

常见问题

What is MCP and why does it matter?+

MCP (Model Context Protocol) is a standard for connecting AI coding tools to external data sources and services. It lets AI assistants like Claude Code access databases, file systems, APIs, and other tools through a unified protocol. Glama helps you discover and manage these MCP servers.

Is Glama free to use?+

Glama's directory and discovery features are free to use. You can browse MCP servers, read documentation, and copy configuration snippets without creating an account. Some management and monitoring features may require registration.

Which AI coding tools support MCP servers from Glama?+

MCP servers listed on Glama work with any tool that implements the Model Context Protocol. This includes Claude Code, Cline, Continue, and other AI coding assistants. The configuration format is standardized, though some tools may have slight differences in how they load MCP configs.

Can I submit my own MCP server to Glama?+

Yes. Glama accepts submissions of new MCP servers. You can submit your server through the platform's contribution workflow, which typically involves providing the server's GitHub repository URL, description, and configuration examples.

How do I update an MCP server installed via Glama?+

MCP servers installed via npx automatically pull the latest version on each invocation. For servers installed from source or Docker, you need to update manually by pulling the latest release. Glama shows version information for each server listing.

引用来源 (3)
🙏

来源与感谢

讨论

登录后参与讨论。
还没有评论,来写第一条吧。

相关资产