pasal vs everything
Side-by-side comparison to help you pick between these two MCP servers.
pasal by ilhamfp | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 236 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
pasal · Summary
MCP server providing grounded access to Indonesian legal data with search, article retrieval, and status checking tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
pasal · Use cases
- Legal professionals researching specific Indonesian laws and their amendments
- AI assistants providing accurate citations and explanations of Indonesian legal provisions
- Developers building applications that need authoritative Indonesian legal data
- Citizens accessing and understanding their rights under Indonesian law
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
pasal · Install
Install via Claude Desktop
Add this MCP server to Claude Desktop:
{
"mcpServers": {
"pasal-id": {
"command": "http",
"args": ["https://pasal-mcp-server-production.up.railway.app/mcp"]
}
}
}Or via command line:
claude mcp add --transport http pasal-id https://pasal-mcp-server-production.up.railway.app/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