MCP ConfigsApr 7, 2026·3 min read

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.

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.

Frequently Asked Questions

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.

Citations (3)
🙏

Source & Thanks

Created by Glama.

Directory: glama.ai/mcp/servers

Discussion

Sign in to join the discussion.
No comments yet. Be the first to share your thoughts.