This project is an MCP (Model Context Protocol) server that controls a turret using serial communication.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"turret_mcp_server": {
"command": "cargo",
"args": [
"run",
"--",
"turret_mcp_server"
]
}
}
}
Run in terminal:
claude mcp add turret_mcp_server cargo run -- turret_mcp_server
Add to .cursor/mcp.json:
{
"mcpServers": {
"turret_mcp_server": {
"command": "cargo",
"args": [
"run",
"--",
"turret_mcp_server"
]
}
}
}