@spec-r/mcp-server 0.3.0

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.
Files changed (3) hide show
  1. package/README.md +128 -0
  2. package/dist/index.js +1637 -0
  3. package/package.json +39 -0
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "@spec-r/mcp-server",
3
+ "version": "0.3.0",
4
+ "description": "MCP server for spec-r — give AI agents direct access to your specifications",
5
+ "type": "module",
6
+ "bin": {
7
+ "specr-mcp": "./dist/index.js"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "scripts": {
12
+ "build": "bun build src/index.ts --outdir dist --format esm --target node --external @modelcontextprotocol/sdk --external zod && chmod +x dist/index.js",
13
+ "dev": "bun build src/index.ts --outdir dist --format esm --target node --external @modelcontextprotocol/sdk --external zod --watch",
14
+ "test": "bun test src/tests/e2e.test.ts --timeout 15000"
15
+ },
16
+ "dependencies": {
17
+ "@modelcontextprotocol/sdk": "^1.12.1",
18
+ "zod": "^3.24.0"
19
+ },
20
+ "devDependencies": {
21
+ "@repo/types": "workspace:*",
22
+ "@types/node": "^25.5.2",
23
+ "bun-types": "^1.3.11",
24
+ "tsup": "^8.4.0",
25
+ "typescript": "5.9.2"
26
+ },
27
+ "files": [
28
+ "dist",
29
+ "README.md"
30
+ ],
31
+ "mcpName": "io.github.pamavoc/spec-r",
32
+ "keywords": [
33
+ "mcp",
34
+ "spec-r",
35
+ "specifications",
36
+ "ai-agents",
37
+ "claude-code"
38
+ ]
39
+ }