Skip to content

Commit f1f85ad

Browse files
committed
refactor(ai): Rename mcp-stdio.mjs to mcp-server.mjs (#9534)
1 parent 74e6662 commit f1f85ad

11 files changed

Lines changed: 11 additions & 11 deletions

File tree

File renamed without changes.
File renamed without changes.

ai/mcp/server/memory-core/services/HealthService.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ class HealthService extends Base {
412412

413413
/**
414414
* Records the result of startup summarization attempt.
415-
* Called by the startup sequence in mcp-stdio.mjs
415+
* Called by the startup sequence in mcp-server.mjs
416416
* @param {string} status One of: 'completed', 'failed', 'skipped'
417417
* @param {Object} details Additional information about the summarization
418418
*/

learn/blog/context-engineering-done-right.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1599,7 +1599,7 @@ The beauty of this pattern is that **services can depend on each other** without
15991599
1. **`ChromaManager`** initializes and establishes the ChromaDB connection
16001600
2. **`DatabaseLifecycleService`** waits for `ChromaManager.ready()` and starts ChromaDB
16011601
3. **`SessionService`** waits for `DatabaseLifecycleService.ready()` and performs summarization
1602-
4. **`mcp-stdio.mjs`** waits for `SessionService.ready()` and starts the MCP server
1602+
4. **`mcp-server.mjs`** waits for `SessionService.ready()` and starts the MCP server
16031603
16041604
All of this happens **automatically and in the correct order**, with zero race conditions. From the main entry point:
16051605

learn/guides/ai/GitHubWorkflowServerGhAbsent.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $origPATH = $env:PATH
1717
$env:PATH = ($env:PATH -split ';' | Where-Object { $_ -notmatch 'GitHub CLI' -and $_ -notmatch 'GitHub' }) -join ';'
1818
1919
# Start the MCP stdio server in this session (gh will be hidden)
20-
node C:/dev/open_source/neo/ai/mcp/server/github-workflow/mcp-stdio.mjs --debug
20+
node C:/dev/open_source/neo/ai/mcp/server/github-workflow/mcp-server.mjs --debug
2121
2222
# When finished, restore your PATH
2323
$env:PATH = $origPATH
@@ -31,7 +31,7 @@ $env:PATH = $origPATH
3131
Alternative single-command test (no session PATH change)
3232

3333
```powershell
34-
cmd /C "set PATH=C:\Windows\System32;C:\Windows; & node C:\dev\open_source\neo\ai\mcp\server\github-workflow\mcp-stdio.mjs --debug"
34+
cmd /C "set PATH=C:\Windows\System32;C:\Windows; & node C:\dev\open_source\neo\ai\mcp\server\github-workflow\mcp-server.mjs --debug"
3535
```
3636

3737
Runbook / Remediation

learn/guides/mcp/CodeExecution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ It is important to understand that **MCP is just a transport layer**.
6767

6868
In the Neo.mjs Agent OS, the actual business logic (searching vectors, syncing GitHub, saving memories) lives inside **Services** (e.g., `QueryService`, `IssueService`). These are **Neo.mjs Singleton Classes** that exist independently of any server.
6969

70-
* **The MCP Server** (`mcp-stdio.mjs`) is just a thin wrapper. It exposes these services to the outside world via the Model Context Protocol.
70+
* **The MCP Server** (`mcp-server.mjs`) is just a thin wrapper. It exposes these services to the outside world via the Model Context Protocol.
7171
* **The AI SDK** (`ai/services.mjs`) imports these **Services** directly.
7272

7373
### The `initAsync` Pattern

learn/guides/mcp/GitHubWorkflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ The server is highly configurable via `config.mjs` or a custom configuration fil
120120
### Usage
121121

122122
```bash readonly
123-
node ai/mcp/server/github-workflow/mcp-stdio.mjs -c ./my-config.json
123+
node ai/mcp/server/github-workflow/mcp-server.mjs -c ./my-config.json
124124
```
125125

126126
### Configuration File Format

learn/guides/mcp/MemoryCore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ The server supports loading a custom configuration file via the `-c` or `--confi
9999
### Usage
100100

101101
```bash readonly
102-
node ai/mcp/server/memory-core/mcp-stdio.mjs -c ./my-config.json
102+
node ai/mcp/server/memory-core/mcp-server.mjs -c ./my-config.json
103103
```
104104

105105
### Configuration File Format

0 commit comments

Comments
 (0)