everything vs asc-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | asc-mcp by zelentsov-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 27 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Swift |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
asc-mcp · Summary
MCP server providing 208 tools for managing App Store Connect resources directly from Claude or other MCP clients.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
asc-mcp · Use cases
- Automate app submissions and review responses through natural language
- Manage TestFlight beta groups and builds programmatically
- Handle in-app purchases and subscription configurations via AI assistants
- Generate App Store Connect analytics reports and performance metrics
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingasc-mcp · Install
Installation
Option A: Using Mint (recommended)
# Install Mint
brew install mint
# Install asc-mcp
mint install zelentsov-dev/asc-mcp@v2.4.0
# Add to Claude Code
claude mcp add asc-mcp -- ~/.mint/bin/asc-mcpOption B: Building from Source
git clone https://github.com/zelentsov-dev/asc-mcp.git
cd asc-mcp
swift build -c release
# Register with Claude
claude mcp add asc-mcp -- $(pwd)/.build/release/asc-mcpClaude Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"asc-mcp": {
"command": "/path/to/asc-mcp",
"env": {
"ASC_KEY_ID": "XXXXXXXXXX",
"ASC_ISSUER_ID": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"ASC_PRIVATE_KEY_PATH": "/path/to/AuthKey.p8"
}
}
}
}