@agentplat/mcp-docs 0.3.0-beta.5 → 0.3.0-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
Read-only MCP server for AgentPlat documentation using the official Model Context Protocol SDK. It exposes deterministic resources and tools without credentials or runtime mutation.
|
|
4
4
|
|
|
5
|
+
## Installation (developer preview)
|
|
6
|
+
|
|
7
|
+
Install the coordinated preview explicitly:
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm install @agentplat/mcp-docs@next
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Keep all `@agentplat/*` packages on the same release version. npm's default
|
|
14
|
+
`latest` tag can point to an older preview. See the
|
|
15
|
+
[release channels](https://github.com/Agentplat/agentplat/blob/main/docs/release-channels.md)
|
|
16
|
+
for distribution status and version selection.
|
|
17
|
+
|
|
5
18
|
```sh
|
|
6
19
|
pnpm --filter @agentplat/mcp-docs build
|
|
7
20
|
node packages/mcp-docs/dist/cli.js
|
|
@@ -10,5 +23,12 @@ node packages/mcp-docs/dist/cli.js
|
|
|
10
23
|
The CLI speaks the official MCP stdio transport and can be configured directly in clients such as Claude Code, Codex or Cursor:
|
|
11
24
|
|
|
12
25
|
```json
|
|
13
|
-
{
|
|
26
|
+
{
|
|
27
|
+
"mcpServers": {
|
|
28
|
+
"agentplat-docs": {
|
|
29
|
+
"command": "agentplat-mcp-docs",
|
|
30
|
+
"env": { "AGENTPLAT_ROOT": "/path/to/agentplat" }
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
14
34
|
```
|