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
Copy file name to clipboardExpand all lines: docs/remcp/installation/install-cursor.mdx
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,18 +32,18 @@ alwaysApply: true
32
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.
35
+
> **Note:** Rules in this section are managed by REMCP. Any changes made will be overwritten when pulling new rule updates.
36
36
37
-
# Verify Changes Using Recurse ML MCP
37
+
# Verify Changes Using REMCP
38
38
39
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.
40
40
41
41
## Do
42
42
43
-
1. Call `mcp_recurse_init()` before making changes to initialize the project for analysis.
44
-
2. Call `mcp_recurse_check()` after completing your changes to get bug reports.
43
+
1. Call `mcp_remcp_init()` before making changes to initialize the project for analysis.
44
+
2. Call `mcp_remcp_check()` after completing your changes to get bug reports.
45
45
3. Investigate the bug reports and fix valid issues.
46
-
4. Use `mcp_recurse_ignore_issue()` if you're aware of an issue but choose not to address it.
46
+
4. Use `mcp_remcp_ignore_issue()` if you're aware of an issue but choose not to address it.
47
47
48
48
## Don't
49
49
@@ -56,18 +56,18 @@ Use REMCP to verify your work while completing tasks. Before making any changes,
56
56
57
57
The REMCP provides the following tools:
58
58
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).
59
+
- `mcp_remcp_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).
60
60
61
-
- `mcp_recurse_check(project_id)`: Check the status of the latest analysis and retrieve any issues found. This should be fast (<1s) as it just reads from the database. The tool might report that an analysis is pending, which means you need to call it again in some time until it says that the analysis either succeeded or errored out.
61
+
- `mcp_remcp_check(project_id)`: Check the status of the latest analysis and retrieve any issues found. This should be fast (<1s) as it just reads from the database. The tool might report that an analysis is pending, which means you need to call it again in some time until it says that the analysis either succeeded or errored out.
62
62
63
-
- `mcp_recurse_ignore_issue(issue_id)`: Indicate that you're aware of an issue but choose not to address it.
63
+
- `mcp_remcp_ignore_issue(issue_id)`: Indicate that you're aware of an issue but choose not to address it.
64
64
65
-
- `mcp_recurse_doctor()`: Run diagnostic checks to troubleshoot installation and configuration issues.
65
+
- `mcp_remcp_doctor()`: Run diagnostic checks to troubleshoot installation and configuration issues.
66
66
67
67
## Workflow
68
68
69
-
1. **Before making changes**: Call `mcp_recurse_init()` with the absolute path to the repository root.
70
-
2. **After completing changes**: Call `mcp_recurse_check()` with the project_id returned from init().
69
+
1. **Before making changes**: Call `mcp_remcp_init()` with the absolute path to the repository root.
70
+
2. **After completing changes**: Call `mcp_remcp_check()` with the project_id returned from init().
71
71
3. **If bugs are found**: Review the bug reports, verify whether they are valid, and fix them.
72
72
4. **If analysis is pending**: Wait a moment and call `check()` again until the analysis completes.
73
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