@e18e/mcp 0.0.4 → 0.0.6
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 +1 -1
- package/dist/docs/docs.json +111 -60
- package/dist/docs/index.d.ts +1 -0
- package/dist/icons/index.d.ts +2 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +0 -4
- package/dist/index.js.map +1 -1
- package/dist/prompts/index.d.ts +1 -0
- package/dist/prompts/task/index.d.ts +2 -0
- package/dist/resources/index.d.ts +1 -0
- package/dist/resources/replacement-docs/index.d.ts +2 -0
- package/dist/run.d.ts +2 -0
- package/dist/run.js +6 -0
- package/dist/run.js.map +1 -0
- package/dist/setup.d.ts +4 -0
- package/dist/tools/code-checker/index.d.ts +2 -0
- package/dist/tools/index.d.ts +2 -0
- package/dist/tools/npm-i-checker/index.d.ts +2 -0
- package/dist/tools/utils.d.ts +1 -0
- package/package.json +20 -13
- package/dist/index.test.js +0 -164
- package/dist/index.test.js.map +0 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ MCP server that flags inefficient or outdated npm packages and serves migration
|
|
|
16
16
|
|
|
17
17
|
Prereqs: Node.js ≥18 and npm/pnpm (build uses pnpm, runtime works via `npx`/`pnpm dlx`/`bunx`).
|
|
18
18
|
|
|
19
|
-
The local (or stdio) version of the MCP server is available via the [`@e18e/mcp`](https://
|
|
19
|
+
The local (or stdio) version of the MCP server is available via the [`@e18e/mcp`](https://npmx.dev/package/@e18e/mcp) npm package. You can either install it globally and then reference it in your configuration or run it with `npx`:
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
22
|
npx -y @e18e/mcp
|