Rulesync MCP Server
Rulesync provides an MCP (Model Context Protocol) server that enables AI agents to manage your Rulesync files. This allows AI agents to discover, read, create, update, and delete files dynamically.
NOTE
The MCP server exposes the only one tool to minimize your agent's token usage. Approximately less than 1k tokens for the tool definition.
Supported Features and Operations
The single rulesyncTool multiplexes by feature and operation:
rule,command,subagent,skill:list,get,put,deleteignore,mcp,permissions,hooks:get,put,deletegenerate:runimport:runconvert:run
The permissions feature operates on .rulesync/permissions.json and the hooks feature operates on .rulesync/hooks.json. Both accept a content string (valid JSON) on put.
convert / run options
When invoking feature: "convert" with operation: "run", pass convertOptions with the following shape:
| Option | Type | Required | Description |
|---|---|---|---|
from | string | Yes | Source tool name (e.g. "claudecode"). Must be a valid ToolTarget. |
to | string[] | Yes | One or more destination tool names. Must not be empty and must not include from. |
features | string[] | No | Features to convert (e.g. ["rules", "commands"]). Defaults to ["*"]. |
global | boolean | No | Convert global (user-scope) configurations. Defaults to false. |
dryRun | boolean | No | Preview changes without writing files. Defaults to false. |
Usage
Starting the MCP Server
rulesync mcpThis starts an MCP server using stdio transport that AI agents can communicate with.
Configuration
Add the Rulesync MCP server to your .rulesync/mcp.json:
{
"$schema": "https://github.com/dyoshikawa/rulesync/releases/latest/download/mcp-schema.json",
"mcpServers": {
"rulesync-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "rulesync", "mcp"],
"env": {}
}
}
}