Stats
Actions
Tags
From oats-skills
Runs a local Node.js process connected to the Tauri IPC bridge via the TAURI_MCP_IPC_PATH environment variable, enabling desktop application interactions through the MCP protocol.
Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"oats-desktop": {
"command": "node",
"args": [
"-e",
"import('tauri-plugin-mcp-server/build/index.js')"
],
"env": {
"TAURI_MCP_IPC_PATH": "${HOME}/.ariso/run/oats-mcp.sock"
}
}
}
}Server configuration and connection parameters
nodeCommand-line arguments passed to the server process
Environment variables set when the server starts
TAURI_MCP_IPC_PATH=${HOME}/.ariso/run/oats-mcp.sockDeclared capabilities of this MCP server
npx claudepluginhub ariso-ai/oats --plugin oats-skills