Skip to content

Commit e71e394

Browse files
authored
remove remcp configure claude from docs (#24)
1 parent 193d0cb commit e71e394

3 files changed

Lines changed: 16 additions & 33 deletions

File tree

docs/remcp/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ remcp auth
3030

3131
# Usage tips
3232

33-
### Recurse prompt (recommended)
33+
### REMCP prompt (recommended)
3434

3535
```
3636
# In claude code
37-
$ /recurse:review_code Please implement access control on web api endpoints
37+
$ /remcp:review_code Please implement access control on web api endpoints
3838
```
39-
The prompt is automatically available once you install remcp, and claude will start using Recurse MCP for analyzing code changes.
39+
The prompt is automatically available once you install remcp, and claude will start using REMCP for analyzing code changes.

docs/remcp/installation/install-claude-code.mdx

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,10 @@ sidebar_position: 1
55
---
66
# Install in Claude Code
77

8-
## Step 1: Add MCP to claude
8+
## Add MCP to claude
99

1010

1111
```
12-
claude mcp add recurse --scope user -- remcp serve
13-
```
14-
15-
## Step 2: Configure CLAUDE.md
16-
17-
18-
```bash
19-
remcp configure claude
20-
```
21-
22-
This installs a global rule in your CLAUDE.md file that ensures Claude Code uses remcp automatically.
23-
24-
## Removing the Configuration
25-
26-
If you want to remove the global rule and prefer to call remcp directly, you can run the following command:
27-
28-
```bash
29-
remcp configure --remove claude
12+
claude mcp add remcp --scope user -- remcp serve
3013
```
3114

docs/remcp/installation/install-cursor.mdx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ alwaysApply: true
3232
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.
3333
---
3434

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.
3636

37-
# Verify Changes Using Recurse ML MCP
37+
# Verify Changes Using REMCP
3838

3939
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.
4040

4141
## Do
4242

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.
4545
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.
4747

4848
## Don't
4949

@@ -56,18 +56,18 @@ Use REMCP to verify your work while completing tasks. Before making any changes,
5656

5757
The REMCP provides the following tools:
5858

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).
6060

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.
6262

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.
6464

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.
6666

6767
## Workflow
6868

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().
7171
3. **If bugs are found**: Review the bug reports, verify whether they are valid, and fix them.
7272
4. **If analysis is pending**: Wait a moment and call `check()` again until the analysis completes.
7373
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

Comments
 (0)