@mermalaid/mcp 0.1.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 ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "@mermalaid/mcp",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "Local MCP server that bridges AI agents to a live Mermalaid diagram editor.",
6
+ "license": "CC-BY-NC-SA-4.0",
7
+ "author": "Dario Novoa (highvoltag3)",
8
+ "homepage": "https://github.com/highvoltag3/mermalaid/tree/main/mcp",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/highvoltag3/mermalaid.git",
12
+ "directory": "mcp"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/highvoltag3/mermalaid/issues"
16
+ },
17
+ "keywords": [
18
+ "mermaid",
19
+ "mcp",
20
+ "mermalaid",
21
+ "diagram",
22
+ "ai-agent"
23
+ ],
24
+ "engines": {
25
+ "node": ">=20.19.0"
26
+ },
27
+ "bin": {
28
+ "mermalaid-mcp": "dist/index.js"
29
+ },
30
+ "files": [
31
+ "dist",
32
+ "LICENSE",
33
+ "README.md"
34
+ ],
35
+ "publishConfig": {
36
+ "access": "public"
37
+ },
38
+ "scripts": {
39
+ "build": "tsc -p tsconfig.json",
40
+ "dev": "tsc -w -p tsconfig.json",
41
+ "start": "node dist/index.js",
42
+ "prepublishOnly": "npm run build",
43
+ "typecheck": "tsc --noEmit -p tsconfig.json",
44
+ "test": "vitest run",
45
+ "test:watch": "vitest"
46
+ },
47
+ "dependencies": {
48
+ "@modelcontextprotocol/sdk": "^1.29.0",
49
+ "ws": "^8.21.0",
50
+ "zod": "^3.25.76"
51
+ },
52
+ "devDependencies": {
53
+ "@types/node": "^22.10.0",
54
+ "@types/ws": "^8.18.1",
55
+ "typescript": "^5.7.2",
56
+ "vitest": "^4.1.10"
57
+ }
58
+ }