aiskillstore vs everything
Side-by-side comparison to help you pick between these two MCP servers.
aiskillstore by garasegae | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
aiskillstore · Summary
MCP server for AI agents to discover, install, and review skills in the agent-first skill marketplace.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
aiskillstore · Use cases
- AI agents discovering and installing new capabilities based on their specific needs
- Skill developers uploading and managing their AI agent skills through the marketplace
- Systems integrators checking compatibility between skills and target platforms before deployment
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
aiskillstore · Install
Installation
Quick start (remote)
Add this configuration to your MCP client settings:
{
"mcpServers": {
"aiskillstore": {
"url": "https://aiskillstore.io/mcp",
"transport": "streamable-http"
}
}
}Self-host (Docker)
docker build -t aiskillstore-mcp .
docker run --rm -i aiskillstore-mcpFor development or testing, you can override the backend URL:
docker run --rm -i -e SKILL_STORE_URL=https://staging.aiskillstore.io aiskillstore-mcpeverything · 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-everything