spicebridge vs everything
Side-by-side comparison to help you pick between these two MCP servers.
spicebridge by clanker-lover | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 19 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
spicebridge · Summary
MCP server providing AI assistants with direct access to ngspice circuit simulation.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
spicebridge · Use cases
- AI-assisted circuit design and validation through natural language commands
- Rapid prototyping of electronic circuits with automatic component value calculation
- Educational tool for learning circuit design concepts through interactive simulation
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
spicebridge · Install
Installation
pip install spicebridgeRequirements
- Python 3.10+
- [ngspice](https://ngspice.sourceforge.io/) installed and on PATH
Claude Desktop Configuration
Add to your .mcp.json:
{
"mcpServers": {
"spicebridge": {
"command": "spicebridge"
}
}
}Cloud Deployment
spicebridge setup-cloud # interactive deployment
spicebridge setup-cloud --quick # quick temporary tunneleverything · 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