lapras-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
lapras-mcp-server by lapras-inc | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 101 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | ProductivityAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 4 mo ago | this month |
lapras-mcp-server · Summary
An official MCP server for Lapras, enabling job search and career management through AI.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
lapras-mcp-server · Use cases
- AI-assisted job search with specific criteria like remote work, salary, and tech stack
- Career profile management through AI analysis and updates to experience and skills
- Resume generation and career planning based on existing work history
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
lapras-mcp-server · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"lapras": {
"command": "npx",
"args": [
"-y",
"@lapras-inc/lapras-mcp-server"
],
"env": {
"LAPRAS_API_KEY": "<YOUR_LAPRAS_API_KEY>"
}
}
}
}Docker
{
"mcpServers": {
"lapras": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"LAPRAS_API_KEY",
"laprascom/lapras-mcp-server:v0.4.0"
],
"env": {
"LAPRAS_API_KEY": "<YOUR_LAPRAS_API_KEY>"
}
}
}
}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