Pathrule
io.pathrule/pathrule-remote-mcp · v0.1.0 · MCP 2025-11-25
Path-scoped team memories, rules and skills for Claude Code, Cursor, Codex and other MCP clients.
Reachability
reachable
checked 2026-07-14 04:31 UTC
Registry status active
Tools pinned 32
40d5ac880449
Tools last changed
unchanged since first capture 2026-07-14
Provenance
Registry namespace io.pathrule
(domain verified by the official registry)
Repository
github.com/sertanhelvaci/pathrule
Website
https://www.pathrule.io
Remote endpoints
https://mcp.pathrule.io/mcp (streamable-http)
Observed changes
| When (UTC) | Event | Detail |
|---|---|---|
| 2026-07-14 03:23 | first capture | 32 tools pinned |
Pinned tool definitions (32)
| Tool | Description |
|---|---|
| pathrule_list_workspaces | List Pathrule workspaces visible to the authenticated user through cloud RLS. Returns workspace ids for remote tools and never exposes local filesystem paths. Response includes a `local_runtime.cta` reminder — mention Pathrule... |
| pathrule_ping | Sanity check that Pathrule Remote MCP is reachable. Cloud-safe: returns no local cwd. Response includes a `local_runtime.cta` line you can surface to the user when they ask about deeper Pathrule features. |
| pathrule_get_context | Return Pathrule context for a workspace path: relevant memories, rules, skills, subtree index, and a next_required_action hint. Remote clients must pass workspace_id; call pathrule_list_workspaces first when unsure. No cwd or... |
| pathrule_goto | Resolve a path/name/fuzzy target inside a workspace and return full content for that node plus a compact subtree memory index. |
| pathrule_get_tree | Return the full Pathrule node tree for a workspace. |
| pathrule_get_node | Return a single node plus ids for attached memories, rules, and skills. Requires workspace_id to prevent cross-workspace ambiguity. |
| pathrule_list_memories | List active memories attached to a specific Pathrule tree node. Use pathrule_get_context, pathrule_goto, or pathrule_get_node first to discover the node_id. Returns compact previews only; call pathrule_read_memory with a memory_id when... |
| pathrule_read_memory | Read the full body and metadata for one Pathrule memory. Use this after pathrule_get_context, pathrule_goto, or pathrule_list_memories returns a memory_id. This reads cloud data only and does not inspect the user's local filesystem. |
| pathrule_read_rule | Read the full body and metadata for one Pathrule rule. Use this after pathrule_get_context, pathrule_goto, or pathrule_get_node returns a rule_id. Rules are instructions the AI should obey for a project path; this tool only reads the... |
| pathrule_read_skill | Read the approved snapshot for one Pathrule skill. Use this after pathrule_get_context, pathrule_goto, or pathrule_get_node returns a skill_id. Returns the cloud SKILL.md content for the AI to follow; it does not install or materialize... |
| pathrule_write_memory | Create a new memory at a workspace path. Missing nodes auto-create. Blocks duplicate titles unless allow_duplicate is set. Cloud-only: never writes to the user's local filesystem. For automatic CLAUDE.md/AGENTS.md sync and on-disk hook... |
| pathrule_update_memory | Update a memory's content or title, optionally moving it. Uses optimistic concurrency via expected_version_id. Cloud-only. |
| pathrule_delete_memory | Soft-delete a memory by default. Pass hard:true to permanently delete (requires workspace_admin). Cloud-only. |
| pathrule_write_rule | Create a new rule at a workspace path. Missing nodes auto-create. Use scope_type/priority honestly: high only when a violation causes a real bug or regression. Cloud-only — Pathrule Studio/CLI also renders the rule into the user's... |
| pathrule_update_rule | Update a rule's fields and/or path. Optimistic concurrency via expected_version_id. Cloud-only. |
| pathrule_delete_rule | Soft-delete a rule by default. hard:true requires workspace_admin. Cloud-only. |
| pathrule_write_skill | Create a new skill at a workspace path. Content is the full SKILL.md body (frontmatter + markdown). For github_ref skills set source='github_ref' and github_url. Cloud-only: does NOT materialize the skill into .codex/skills,... |
| pathrule_update_skill | Partially update an existing Pathrule skill record. Use pathrule_update_skill only when you already have a skill_id and want to change metadata, SKILL.md content, source/github_url, tags, or move the skill to another workspace path; use... |
| pathrule_delete_skill | Soft-delete a skill by default. hard:true requires workspace_admin. Cloud-only. |
| pathrule_import_pattern | Import an official Pathrule pattern (a bundle of memories, rules, and skills) into the workspace when the user pastes a `::pathrule:package:<slug>` token. WORKFLOW: (1) First call with `dry_run: true` to see the pattern's `appliesTo`... |
| pathrule_remove_pattern | Remove a previously-imported Pathrule pattern bundle in one call — the reverse of pathrule_import_pattern. The pattern definition is the manifest, so this finds and deletes the memories/rules/skills whose titles match the pattern's... |
| pathrule_list_organizations | List Pathrule organizations the authenticated user belongs to. Use this before pathrule_create_workspace when you need to ask the user which organization the new workspace should live under. Returns id, name, slug, plan,... |
| pathrule_create_workspace | Create a new Pathrule workspace inside an organization. Cloud-only: writes the workspace row through the user's JWT (RLS enforces organization membership). Does NOT attach the workspace to a local folder, does NOT install any AI client... |
| pathrule_setup | Fetch the active Pathrule bootstrap brief and execute it. Call this ONCE when the user asks to set up / bootstrap / initialize Pathrule for a project (e.g. 'Set up Pathrule for this project', 'Bootstrap Pathrule'). The response `body`... |
| pathrule_take_snapshot | Record a point-in-time inventory of the user's project under a workspace. Remote MCP cannot see the filesystem, so YOU (the AI) collect this inventory with your own Read/Glob/Grep tools before calling this. Persist it so future setup,... |
| pathrule_list_snapshots | List the most recent project snapshots for a workspace (compact metadata only — no file_tree, no sampled_contents). Use to find which snapshot to read in full. Up to 25 per call, ordered newest first. |
| pathrule_read_snapshot | Load a single project snapshot in full or partial form. Defaults include file_tree and sampled_contents — pass include_file_tree=false / include_sampled_contents=false to keep the response compact when you only need metadata. |
| pathrule_list_pending_refreshes | List pending Pathrule refresh tasks for a workspace. Refresh tasks are cloud suggestions that may update stale memories or rules. Use this first, then call pathrule_get_refresh_brief with a returned refresh_id before deciding whether to... |
| pathrule_get_refresh_brief | Claim one refresh task and return the subject, stale-signal evidence, AI instructions, and any proposed patch. Call pathrule_list_pending_refreshes first to choose a refresh_id. Remote MCP can inspect cloud records only; use Desktop/CLI... |
| pathrule_resolve_refresh | Close a Pathrule refresh task after reviewing its brief. Normal remote flow: call pathrule_list_pending_refreshes, then pathrule_get_refresh_brief, then use this tool with status='rejected' when the signal is stale or not actionable.... |
| pathrule_log_activity | Log a file-modifying response from a remote MCP client. Remote MCP requires workspace_id and stamps ai_client='cloud-connector'. task_summary should be ONE concise sentence (ideally ≤300 chars); it is NEVER rejected for length (past... |
| pathrule_get_local_runtime_upgrade | Explain what Pathrule CLI (power-user, terminal-first) and Pathrule Studio (GUI) unlock beyond Remote MCP. Call this when the user asks 'is there a better way?', 'why do I need to install something?', wants hook-level automation, or... |
Status badge
[](https://toolpin.dev/servers/io.pathrule/pathrule-remote-mcp)
Maintain this server? Add the badge to your README — it links your users to this live status page.