@precode/mcp 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 +7 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# @precode/mcp
|
|
2
2
|
|
|
3
|
-
Open, agent-agnostic MCP server that turns a spec into a **self-correcting, verified build**. Works with **any** spec (`SPEC.md`, `.specify`, `.spec-workflow`) and **best** with a PreCode [`.precode/`](https://
|
|
3
|
+
Open, agent-agnostic MCP server that turns a spec into a **self-correcting, verified build**. Works with **any** spec (`SPEC.md`, `.specify`, `.spec-workflow`) and **best** with a PreCode [`.precode/`](https://useprecode.vercel.app/mcp) package. Runs locally on your agent and your tokens.
|
|
4
|
+
|
|
5
|
+
Install: [`@precode/mcp` on npm](https://www.npmjs.com/package/@precode/mcp). Docs: [useprecode.vercel.app/mcp](https://useprecode.vercel.app/mcp).
|
|
4
6
|
|
|
5
7
|
It fixes the loop/goal failure other spec MCPs ship with:
|
|
6
8
|
|
|
@@ -73,3 +75,7 @@ The smoke test launches the built MCP server over stdio, verifies the tool list,
|
|
|
73
75
|
| `precode://tasks` | Current phased task plan |
|
|
74
76
|
| `precode://acceptance` | Acceptance criteria and self-checks |
|
|
75
77
|
| `precode://progress` | Implementation ledger and human TODOs |
|
|
78
|
+
|
|
79
|
+
## Release
|
|
80
|
+
|
|
81
|
+
Tagged releases publish to npm via GitHub Actions. See [RELEASE.md](./RELEASE.md).
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@precode/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Open, agent-agnostic MCP server that turns a spec (any SPEC.md, best with a PreCode .precode/ package) into a self-correcting, verified build. Drives a phased build → recheck → fix loop with hard definition-of-done gates and an implemented-vs-todo ledger.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"homepage": "https://useprecode.vercel.app/mcp",
|
|
6
7
|
"type": "module",
|
|
7
8
|
"bin": {
|
|
8
9
|
"precode-mcp": "dist/index.js"
|
|
@@ -16,7 +17,8 @@
|
|
|
16
17
|
"dev": "tsc --watch",
|
|
17
18
|
"start": "node dist/index.js",
|
|
18
19
|
"test:stdio": "npm run build && node scripts/stdio-smoke.mjs",
|
|
19
|
-
"typecheck": "tsc --noEmit"
|
|
20
|
+
"typecheck": "tsc --noEmit",
|
|
21
|
+
"prepublishOnly": "npm run test:stdio"
|
|
20
22
|
},
|
|
21
23
|
"keywords": [
|
|
22
24
|
"mcp",
|