What is Glama?
Glama is a discovery and management platform for MCP (Model Context Protocol) servers. It provides a searchable directory of MCP servers, one-click install instructions, compatibility information, and monitoring tools — making it easy to find and configure the right MCP servers for your AI coding workflow.
Answer-Ready: Glama is a discovery platform for MCP servers with a searchable directory, install instructions, and compatibility info. Browse 200+ MCP servers for Claude Code, Cline, and other AI tools at glama.ai/mcp/servers.
Best for: Developers looking for MCP servers to extend their AI coding tools. Works with: Claude Code, Cline, Cursor, any MCP-compatible client. Setup time: Under 1 minute per server.
Core Features
1. Searchable Directory
Browse 200+ MCP servers organized by category:
| Category | Examples |
|---|---|
| Databases | PostgreSQL, MongoDB, Redis, SQLite |
| Cloud | AWS, GCP, Azure, Cloudflare |
| DevTools | GitHub, GitLab, Jira, Linear |
| Communication | Slack, Discord, Gmail, Outlook |
| AI/ML | OpenAI, Hugging Face, Replicate |
| Files | Filesystem, Google Drive, S3, Dropbox |
| Search | Brave, Tavily, Exa, Google |
2. Server Details
Each server page includes:
- Description and capabilities
- Install command (npx, pip, docker)
- Configuration example for
.mcp.json - Available tools and resources
- GitHub stars and last update
- Compatibility badges
3. Install Instructions
// Example: GitHub MCP Server
{
"mcpServers": {
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_..."
}
}
}
}4. Compatibility Matrix
| Server | Claude Code | Cline | Cursor |
|---|---|---|---|
| GitHub | Yes | Yes | Yes |
| Filesystem | Yes | Yes | Yes |
| PostgreSQL | Yes | Yes | Partial |
| Playwright | Yes | Yes | No |
5. Server Categories
Official (by Anthropic):
- Filesystem, GitHub, GitLab, Slack, Google Drive, PostgreSQL, SQLite, Brave Search, Puppeteer, Memory
Community:
- 150+ community-built servers for databases, APIs, cloud services, and more
How to Use with Claude Code
# 1. Find a server on glama.ai
# 2. Copy the config
# 3. Add to .mcp.json in your project root
# 4. Restart Claude Code
# Example: Add PostgreSQL + GitHub
cat > .mcp.json << 'MCPEOF'
{
"mcpServers": {
"postgres": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-postgres", "postgresql://localhost/mydb"]
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_..."}
}
}
}
MCPEOFFAQ
Q: Is Glama free? A: Yes, the directory is free to browse and use.
Q: Can I submit my own MCP server? A: Yes, submit via the website. Servers are reviewed before listing.
Q: Does Glama host the MCP servers? A: No, Glama is a directory. Servers run locally on your machine via npx, pip, or docker.