doc2mcp 0.1.14 → 0.1.15
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 +2 -2
- package/assets/doc2mcp-cli-banner.png +0 -0
- package/dist/index.js +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
<img src="
|
|
3
|
+
<img src="./assets/doc2mcp-cli-banner.png" alt="doc2mcp — turn any docs site into a hosted MCP server from your terminal" width="100%" />
|
|
4
4
|
|
|
5
5
|
# doc2mcp
|
|
6
6
|
|
|
@@ -172,7 +172,7 @@ Existing config is merged, not overwritten.
|
|
|
172
172
|
|
|
173
173
|
| Symptom | Fix |
|
|
174
174
|
| --- | --- |
|
|
175
|
-
| `command not found: doc2mcp` | You installed locally. Reinstall with `npm i -g doc2mcp`, or use `npx doc2mcp <url>`. |
|
|
175
|
+
| `command not found: doc2mcp` | You installed locally or your shell cached PATH. Reinstall with `npm i -g doc2mcp`, then run `hash -r` or open a new terminal. You can also use `npx doc2mcp <url>`. |
|
|
176
176
|
| Browser doesn't open on `login` | Copy the printed URL into your browser manually, then approve. |
|
|
177
177
|
| `login` can't reach the server | Confirm you're online; for self-hosting set `DOC2MCP_API_URL` to your instance. |
|
|
178
178
|
| "Limit reached" | You've hit your plan's monthly conversion limit (shared across CLI, web, and Playground). |
|
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -534,7 +534,7 @@ async function runList() {
|
|
|
534
534
|
|
|
535
535
|
// src/index.ts
|
|
536
536
|
var program = new Command();
|
|
537
|
-
program.name("doc2mcp").description("Generate documentation MCP servers from your terminal").version("0.1.
|
|
537
|
+
program.name("doc2mcp").description("Generate documentation MCP servers from your terminal").version("0.1.15", "-v, --version", "Print the installed CLI version");
|
|
538
538
|
program.command("login").description("Authorize the CLI via browser").action(async () => {
|
|
539
539
|
await runLogin();
|
|
540
540
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "doc2mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"description": "Turn any documentation site into a hosted MCP server from your terminal — for Cursor, Claude, VS Code, Windsurf, and OpenAI agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"url": "https://github.com/gautammanak1/doc2mcp/issues"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
|
+
"assets",
|
|
19
20
|
"dist",
|
|
20
21
|
"README.md"
|
|
21
22
|
],
|