@dain-os/mcp-server 0.3.2 → 0.4.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.
package/package.json CHANGED
@@ -1,35 +1,39 @@
1
- {
2
- "name": "@dain-os/mcp-server",
3
- "version": "0.3.2",
4
- "description": "MCP server for DainOS — manage projects, tasks, proposals, and proposal content from Claude Code and other MCP clients",
5
- "type": "module",
6
- "bin": {
7
- "dain-mcp": "./dist/index.js",
8
- "mcp-server": "./dist/index.js"
9
- },
10
- "main": "./dist/index.js",
11
- "types": "./dist/index.d.ts",
12
- "files": ["dist", "README.md"],
13
- "scripts": {
14
- "build": "tsc",
15
- "dev": "tsx watch src/index.ts",
16
- "test": "vitest run",
17
- "check-types": "tsc --noEmit"
18
- },
19
- "dependencies": {
20
- "@modelcontextprotocol/sdk": "^1.0.4",
21
- "zod": "^3.23.8"
22
- },
23
- "devDependencies": {
24
- "@types/node": "^20.11.0",
25
- "tsx": "^4.7.0",
26
- "typescript": "5.8.2",
27
- "vitest": "^1.6.0"
28
- },
29
- "engines": {
30
- "node": ">=18"
31
- },
32
- "publishConfig": {
33
- "access": "public"
34
- }
35
- }
1
+ {
2
+ "name": "@dain-os/mcp-server",
3
+ "version": "0.4.0",
4
+ "description": "MCP server for DainOS — manage projects, tasks, proposals, and proposal content from Claude Code and other MCP clients",
5
+ "type": "module",
6
+ "bin": {
7
+ "dain-mcp": "./dist/index.js",
8
+ "mcp-server": "./dist/index.js"
9
+ },
10
+ "main": "./dist/index.js",
11
+ "types": "./dist/index.d.ts",
12
+ "files": [
13
+ "dist",
14
+ "README.md"
15
+ ],
16
+ "scripts": {
17
+ "build": "tsc",
18
+ "prepare": "tsc",
19
+ "dev": "tsx watch src/index.ts",
20
+ "test": "vitest run",
21
+ "check-types": "tsc --noEmit"
22
+ },
23
+ "dependencies": {
24
+ "@modelcontextprotocol/sdk": "^1.0.4",
25
+ "zod": "^3.23.8"
26
+ },
27
+ "devDependencies": {
28
+ "@types/node": "^20.11.0",
29
+ "tsx": "^4.7.0",
30
+ "typescript": "5.8.2",
31
+ "vitest": "^1.6.0"
32
+ },
33
+ "engines": {
34
+ "node": ">=18"
35
+ },
36
+ "publishConfig": {
37
+ "access": "public"
38
+ }
39
+ }