You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update Cursor installation rule with additional guidelines
* Update rule note placement and wording
* Update references from 'Recurse ML MCP' to 'REMCP'
Copy file name to clipboardExpand all lines: docs/remcp/installation/install-cursor.mdx
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,18 +23,20 @@ Add the following user rule in your Cursor settings:
23
23
24
24
```yaml
25
25
---
26
-
name: Verify Changes Using Recurse ML MCP
26
+
name: Verify Changes Using REMCP
27
27
28
28
globs: "**/*.{js,ts,py,rs,go,java,rb,cs,tsx,jsx}"
29
29
30
30
alwaysApply: true
31
31
32
-
description: Use Recurse ML MCP to verify your work. Before making changes, call init() on the project if not already done. Once all changes are done, call check() to get bug reports.
32
+
description: Use REMCP to verify your work. Before making changes, call init() on the project if not already done. Once all changes are done, call check() to get bug reports.
33
33
---
34
34
35
+
> **Note:** Rules in this section are managed by Recurse ML. Any changes made will be overwritten when pulling new rule updates.
36
+
35
37
# Verify Changes Using Recurse ML MCP
36
38
37
-
Use Recurse ML MCP to verify your work while completing tasks. Before making any changes, call `init()` on the project if not already done. Once all changes are done, call `check()` to get bug reports.
39
+
Use REMCP to verify your work while completing tasks. Before making any changes, call `init()` on the project if not already done. Once all changes are done, call `check()` to get bug reports.
38
40
39
41
## Do
40
42
@@ -52,7 +54,7 @@ Use Recurse ML MCP to verify your work while completing tasks. Before making any
52
54
53
55
## MCP Usage
54
56
55
-
The Recurse ML MCP provides the following tools:
57
+
The REMCP provides the following tools:
56
58
57
59
- `mcp_recurse_init(repo_path)`: Initialize a codebase for analysis. Sets up the project for continuous analysis by performing health checks, creating a project entry in the database, and starting the background worker (if not already running).
58
60
@@ -70,7 +72,7 @@ The Recurse ML MCP provides the following tools:
70
72
4. **If analysis is pending**: Wait a moment and call `check()` again until the analysis completes.
71
73
5. **When making a code change**: Clearly state that the change is being made as a result of a bug found by REMCP and state what the bug is.
0 commit comments