everything vs AwesomeSalesforceSkills
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | AwesomeSalesforceSkills by PranavNagrecha | |
|---|---|---|
| Stars | ★ 85,748 | ★ 20 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
AwesomeSalesforceSkills · Summary
Comprehensive Salesforce knowledge layer with 38-tool MCP server providing live-org metadata, skills, and agents for AI assistants.
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
AwesomeSalesforceSkills · Use cases
- AI-powered Salesforce development with real-time org validation
- Learning Salesforce best practices through structured skill guides
- Automating Salesforce administration tasks with AI assistants
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-everythingAwesomeSalesforceSkills · Install
# 1. Clone the repository
git clone https://github.com/PranavNagrecha/AwesomeSalesforceSkills.git
cd AwesomeSalesforceSkills
# 2. Install dependencies
python3 -m pip install -r requirements.txt
# 3. Install MCP server
pip install sfskills-mcp
# For Claude Desktop:
# Add to claude_desktop_config.json:
{
"mcpServers": {
"sfskills": {
"command": "sfskills-mcp",
"args": []
}
}
}