buttplug-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
buttplug-mcp by ConAcademy | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 131 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | 12 mo ago | this month |
buttplug-mcp · Summary
MCP server for controlling Buttplug devices through LLM tool calls with vibration and battery status functionality.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
buttplug-mcp · Use cases
- Integrating adult toy control into LLM conversations for interactive experiences
- Automating device responses based on conversational prompts
- Monitoring device battery levels and signal strength through natural language queries
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
buttplug-mcp · Install
Installation
Homebrew
brew tap conacademy/homebrew-tap
brew install conacademy/tap/buttplug-mcpFrom GitHub Releases
Download binaries from [GitHub Releases](https://github.com/conacademy/buttplug-mcp/releases)
From Source
go install github.com/conacademy/buttplug-mcp@latestConfiguration (Claude Desktop)
Add to Claude Desktop config:
{
"mcpServers": {
"buttplug": {
"command": "/opt/homebrew/bin/buttplug-mcp",
"args": [
"--ws-port", "12345"
]
}
}
}- Start [Intiface Central](https://intiface.com/central/) to manage devices
- Note the server port (default: 12345)
- Configure your MCP host to connect to this server
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