mcp-server-circleci vs memory
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-circleci by CircleCI-Public | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 83 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraProductivity | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-server-circleci · Summary
A TypeScript MCP server that integrates CircleCI's development workflow with AI assistants via natural language commands.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
mcp-server-circleci · Use cases
- Trigger and monitor CircleCI pipelines directly from AI assistants without leaving your IDE
- Analyze build failures and test results to identify and fix issues faster
- Optimize CircleCI configurations by finding underused resources and flaky tests
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
mcp-server-circleci · Install
Installation
With Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"circleci-mcp-server": {
"command": "npx",
"args": ["-y", "@circleci/mcp-server-circleci@latest"],
"env": {
"CIRCLECI_TOKEN": "your-circleci-token",
"CIRCLECI_BASE_URL": "https://circleci.com",
"MAX_MCP_OUTPUT_LENGTH": "50000"
}
}
}
}With VS Code
Add to .vscode/mcp.json:
{
"servers": {
"circleci-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@circleci/mcp-server-circleci@latest"],
"env": {
"CIRCLECI_TOKEN": "${input:circleci-token}",
"CIRCLECI_BASE_URL": "${input:circleci-base-url}"
}
}
}
}**Prerequisites:** CircleCI Personal API token, Node.js ≥ v18, pnpm, Docker (optional)
memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}