buttplug-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
buttplug-mcp by ConAcademy | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 131 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOther | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.