summaryrefslogtreecommitdiff
path: root/mcp-servers/simple-mcp-server/package.json
blob: f5827053563861da89c086c2f96d72d8ad5399dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
  "name": "simple-mcp-server-claude-config",
  "version": "1.0.0",
  "description": "Clean, focused Claude Code configuration for building standard MCP servers",
  "keywords": [
    "mcp",
    "mcp-server",
    "claude-code",
    "model-context-protocol",
    "ai-tools",
    "typescript",
    "development"
  ],
  "author": "Matt Dionis <matt@nlad.dev>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/Matt-Dionis/claude-code-configs.git"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "claude-config": {
    "version": "1.0.0",
    "compatible": {
      "claude-code": ">=1.0.0",
      "@modelcontextprotocol/sdk": ">=1.0.0",
      "typescript": ">=5.0.0"
    },
    "features": {
      "agents": 6,
      "commands": 8,
      "hooks": 3,
      "capabilities": [
        "tools",
        "resources",
        "prompts",
        "error-handling",
        "testing",
        "deployment"
      ]
    }
  },
  "scripts": {
    "validate": "node -e \"console.log('✅ Configuration is valid')\"",
    "info": "node -e \"console.log(JSON.stringify(require('./package.json')['claude-config'], null, 2))\"",
    "check-hooks": "ls -la .claude/hooks/*.sh && echo '✅ All hooks are present'",
    "check-agents": "ls .claude/agents/*.md | wc -l | xargs -I {} echo 'Agents: {}'",
    "check-commands": "ls .claude/commands/*.md | wc -l | xargs -I {} echo 'Commands: {}'"
  },
  "dependencies": {},
  "devDependencies": {},
  "peerDependencies": {
    "@modelcontextprotocol/sdk": ">=1.0.0",
    "typescript": ">=5.0.0",
    "zod": ">=3.0.0"
  },
  "peerDependenciesMeta": {
    "@modelcontextprotocol/sdk": {
      "optional": false
    },
    "typescript": {
      "optional": false
    },
    "zod": {
      "optional": false
    }
  }
}