MCP Catalogs
Home

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
Score3677
Official
Categories
AI / LLM ToolsDeveloper ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last committhis monththis 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-mcp

For development or testing, you can override the backend URL:

docker run --rm -i -e SKILL_STORE_URL=https://staging.aiskillstore.io aiskillstore-mcp

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-everything
Comparison generated from public README + GitHub signals. Last updated automatically.