Skip to content

Commit 6cd5e58

Browse files
committed
- Updated MCPCONFIG.md file and added back the original repo package name to use, instead of my git repo
1 parent 08eaa2c commit 6cd5e58

1 file changed

Lines changed: 16 additions & 11 deletions

File tree

MCPCONFIG.md

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,77 @@
11
# MCP client configuration examples
2-
This document contains example MCP client configurations for running this fork via `npx` + GitHub reference.
2+
This document contains example MCP client configurations for running via `npx`.
33
Replace `/path/to/your/project` with the directory you want indexed.
4+
45
## Claude Desktop / VS Code / Cursor
56
Add this to your MCP client config:
67
```json
78
{
89
"mcpServers": {
9-
"codebase-context-react-nextjs": {
10+
"codebase-context": {
1011
"command": "npx",
1112
"args": [
1213
"-y",
13-
"github:aolin480/codebase-context-react-nextjs#master",
14+
"codebase-context",
1415
"/path/to/your/project"
1516
]
1617
}
1718
}
1819
}
1920
```
21+
2022
## Warp
2123
Add this to your Warp MCP configuration:
2224
```json
2325
{
24-
"codebase-context-react-nextjs": {
26+
"codebase-context": {
2527
"command": "npx",
2628
"args": [
2729
"-y",
28-
"github:aolin480/codebase-context-react-nextjs#master",
30+
"codebase-context",
2931
"/path/to/your/project"
3032
]
3133
}
3234
}
3335
```
36+
3437
## Codex
3538
Add this to your Codex MCP configuration:
3639
```toml
37-
[mcp_servers.codebase-context-react-nextjs]
40+
[mcp_servers.codebase-context]
3841
command = "npx"
3942
args = [
4043
"-y",
41-
"github:aolin480/codebase-context-react-nextjs#master",
44+
"codebase-context",
4245
"/path/to/your/project"
4346
]
4447
```
48+
4549
## Gemini
4650
Add this to your Gemini MCP configuration:
4751
```json
4852
{
49-
"codebase-context-react-nextjs": {
53+
"codebase-context": {
5054
"command": "npx",
5155
"args": [
5256
"-y",
53-
"github:aolin480/codebase-context-react-nextjs#master",
57+
"codebase-context",
5458
"/path/to/your/project"
5559
]
5660
}
5761
}
5862
```
63+
5964
## OpenCode
6065
Add this to your OpenCode MCP configuration:
6166
```json
6267
{
6368
"mcp": {
64-
"codebase-context-react-nextjs": {
69+
"codebase-context": {
6570
"type": "local",
6671
"command": [
6772
"npx",
6873
"-y",
69-
"github:aolin480/codebase-context-react-nextjs#master",
74+
"codebase-context",
7075
"/path/to/your/project"
7176
],
7277
"enabled": true

0 commit comments

Comments
 (0)