mcpmake 0.1.0 → 0.1.1
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 -21
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ npm start
|
|
|
74
74
|
mcpmake ci init ./api-spec.yaml -o ./my-mcp-server
|
|
75
75
|
```
|
|
76
76
|
|
|
77
|
-
> **Coming from Stainless?** See [Migrate off Stainless to an MCP server you own](docs/migrate-from-stainless.md).
|
|
77
|
+
> **Coming from Stainless?** See [Migrate off Stainless to an MCP server you own](https://github.com/starkyru/mcpmake/blob/main/docs/migrate-from-stainless.md).
|
|
78
78
|
|
|
79
79
|
### Project config (`.mcpmake.yaml`)
|
|
80
80
|
|
|
@@ -99,7 +99,7 @@ deploy:
|
|
|
99
99
|
mcpmake from openapi ./api-spec.yaml
|
|
100
100
|
```
|
|
101
101
|
|
|
102
|
-
**Precedence (highest wins):** explicit CLI flag → per-command section → global key → built-in default. Positional args (the spec path) always stay on the command line. See [`.mcpmake.example.yaml`](.mcpmake.example.yaml). Supported by every `from` generator and `deploy`.
|
|
102
|
+
**Precedence (highest wins):** explicit CLI flag → per-command section → global key → built-in default. Positional args (the spec path) always stay on the command line. See [`.mcpmake.example.yaml`](https://github.com/starkyru/mcpmake/blob/main/.mcpmake.example.yaml). Supported by every `from` generator and `deploy`.
|
|
103
103
|
|
|
104
104
|
## What Gets Generated
|
|
105
105
|
|
|
@@ -216,7 +216,7 @@ Unlike generic browser MCP servers (Playwright MCP, Puppeteer MCP), this generat
|
|
|
216
216
|
|
|
217
217
|
When the site changes, run `mcpmake rescan ./site-mcp` to diff the live site against the embedded snapshot, heal low-confidence selectors, and (with `--write`) regenerate the server in place.
|
|
218
218
|
|
|
219
|
-
See **[Website MCP servers](docs/website-servers.md)** for the full `from url` / `from website` / `rescan` workflow, headless capture, and the runtime selector-resilience details.
|
|
219
|
+
See **[Website MCP servers](https://github.com/starkyru/mcpmake/blob/main/docs/website-servers.md)** for the full `from url` / `from website` / `rescan` workflow, headless capture, and the runtime selector-resilience details.
|
|
220
220
|
|
|
221
221
|
### `from describe` — Natural Language (AI-Powered)
|
|
222
222
|
|
|
@@ -491,27 +491,27 @@ paths:
|
|
|
491
491
|
## CLI Reference
|
|
492
492
|
|
|
493
493
|
Every command, argument, flag, default, and required env var is documented in
|
|
494
|
-
the complete **[CLI reference → `docs/cli.md`](docs/cli.md)**. You can also run
|
|
494
|
+
the complete **[CLI reference → `docs/cli.md`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md)**. You can also run
|
|
495
495
|
`mcpmake <command> --help` for the live, authoritative flag list.
|
|
496
496
|
|
|
497
497
|
| Command | Purpose |
|
|
498
498
|
| --- | --- |
|
|
499
|
-
| [`from openapi`](docs/cli.md#mcpmake-from-openapi) | Generate from an OpenAPI/Swagger spec or provider shortcut |
|
|
500
|
-
| [`from har`](docs/cli.md#mcpmake-from-har) | Generate from a HAR (browser DevTools) recording |
|
|
501
|
-
| [`from url`](docs/cli.md#mcpmake-from-url) | Generate by recording a live browser session |
|
|
502
|
-
| [`from postman`](docs/cli.md#mcpmake-from-postman) | Generate from a Postman Collection (v2.1) |
|
|
503
|
-
| [`from website`](docs/cli.md#mcpmake-from-website) | Generate a Playwright server from a site's DOM |
|
|
504
|
-
| [`from describe`](docs/cli.md#mcpmake-from-describe) | Generate from a natural-language description (AI) |
|
|
505
|
-
| [`merge`](docs/cli.md#mcpmake-merge) | Merge two OpenAPI specs into one |
|
|
506
|
-
| [`diff`](docs/cli.md#mcpmake-diff) | Compare tools generated from two specs |
|
|
507
|
-
| [`lint`](docs/cli.md#mcpmake-lint) | Lint an OpenAPI spec for MCP issues |
|
|
508
|
-
| [`verify`](docs/cli.md#mcpmake-verify) | Check a generated project still matches its spec |
|
|
509
|
-
| [`update`](docs/cli.md#mcpmake-update) | Re-generate a project from a changed spec |
|
|
510
|
-
| [`rescan`](docs/cli.md#mcpmake-rescan) | Re-crawl a website project, heal selectors, regenerate |
|
|
511
|
-
| [`bundle`](docs/cli.md#mcpmake-bundle) | Bundle a generated project into an `.mcpb` file |
|
|
512
|
-
| [`publish`](docs/cli.md#mcpmake-publish) | Generate registry manifests / publish to the MCP Registry |
|
|
513
|
-
| [`deploy`](docs/cli.md#mcpmake-deploy) | Deploy a spec to the hosting backend |
|
|
514
|
-
| [`ci init`](docs/cli.md#mcpmake-ci-init) | Generate a GitHub Actions drift-check workflow |
|
|
499
|
+
| [`from openapi`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-from-openapi) | Generate from an OpenAPI/Swagger spec or provider shortcut |
|
|
500
|
+
| [`from har`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-from-har) | Generate from a HAR (browser DevTools) recording |
|
|
501
|
+
| [`from url`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-from-url) | Generate by recording a live browser session |
|
|
502
|
+
| [`from postman`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-from-postman) | Generate from a Postman Collection (v2.1) |
|
|
503
|
+
| [`from website`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-from-website) | Generate a Playwright server from a site's DOM |
|
|
504
|
+
| [`from describe`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-from-describe) | Generate from a natural-language description (AI) |
|
|
505
|
+
| [`merge`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-merge) | Merge two OpenAPI specs into one |
|
|
506
|
+
| [`diff`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-diff) | Compare tools generated from two specs |
|
|
507
|
+
| [`lint`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-lint) | Lint an OpenAPI spec for MCP issues |
|
|
508
|
+
| [`verify`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-verify) | Check a generated project still matches its spec |
|
|
509
|
+
| [`update`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-update) | Re-generate a project from a changed spec |
|
|
510
|
+
| [`rescan`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-rescan) | Re-crawl a website project, heal selectors, regenerate |
|
|
511
|
+
| [`bundle`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-bundle) | Bundle a generated project into an `.mcpb` file |
|
|
512
|
+
| [`publish`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-publish) | Generate registry manifests / publish to the MCP Registry |
|
|
513
|
+
| [`deploy`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-deploy) | Deploy a spec to the hosting backend |
|
|
514
|
+
| [`ci init`](https://github.com/starkyru/mcpmake/blob/main/docs/cli.md#mcpmake-ci-init) | Generate a GitHub Actions drift-check workflow |
|
|
515
515
|
|
|
516
516
|
## Architecture
|
|
517
517
|
|
|
@@ -571,7 +571,7 @@ tiers cover keeping it in sync and running it for you.
|
|
|
571
571
|
| **Enterprise** | custom | SSO, RBAC, private registry, audit. |
|
|
572
572
|
|
|
573
573
|
Prices are served live from the backend (`GET /api/pricing`) and defined in
|
|
574
|
-
[`src/pricing.ts`](src/pricing.ts), so the CLI never shows stale numbers.
|
|
574
|
+
[`src/pricing.ts`](https://github.com/starkyru/mcpmake/blob/main/src/pricing.ts), so the CLI never shows stale numbers.
|
|
575
575
|
Managed hosting is a convenience tier, not the anchor — the value you own is the
|
|
576
576
|
editable code and safe regeneration.
|
|
577
577
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcpmake",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Generate MCP servers from API specifications",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/starkyru/mcpmake.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/starkyru/mcpmake#readme",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/starkyru/mcpmake/issues"
|
|
13
|
+
},
|
|
6
14
|
"bin": {
|
|
7
15
|
"mcpmake": "./bin/mcpmake.mjs"
|
|
8
16
|
},
|