archergate-mcp-server 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server.json +140 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "archergate-mcp-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for Archergate License SDK. Lets AI coding assistants generate license-protected software automatically.",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/server.json ADDED
@@ -0,0 +1,140 @@
1
+ {
2
+ "name": "archergate-mcp-server",
3
+ "version": "0.1.0",
4
+ "description": "Machine-bound software licensing for indie developers. Generate license-protected code automatically for any language or framework.",
5
+ "homepage": "https://archergate.io/sdk",
6
+ "repository": "https://github.com/lailaarcher/archergate",
7
+ "author": "Archergate <hello@archergate.io>",
8
+ "license": "MIT",
9
+ "tools": [
10
+ {
11
+ "name": "generate_license_integration",
12
+ "description": "Generate complete Archergate license integration code for any language (Rust, C, C++, Python, C#, Go, JavaScript). Includes install commands, build flags, server setup, and error handling.",
13
+ "inputSchema": {
14
+ "type": "object",
15
+ "required": ["language", "app_id"],
16
+ "properties": {
17
+ "language": {
18
+ "type": "string",
19
+ "enum": ["rust", "c", "cpp", "python", "csharp", "go", "javascript", "rest"],
20
+ "description": "Target programming language"
21
+ },
22
+ "app_id": {
23
+ "type": "string",
24
+ "description": "Reverse-domain application identifier (e.g. com.yourname.app)"
25
+ },
26
+ "app_type": {
27
+ "type": "string",
28
+ "enum": ["vst-plugin", "au-plugin", "aax-plugin", "clap-plugin", "juce-plugin", "unity-asset", "unreal-plugin", "blender-addon", "desktop-app", "electron-app", "tauri-app", "adobe-plugin", "game-mod", "other"],
29
+ "description": "Type of software being protected"
30
+ },
31
+ "features": {
32
+ "type": "array",
33
+ "items": {
34
+ "type": "string",
35
+ "enum": ["validation", "offline-cache", "trial-period", "machine-binding", "tamper-detection"]
36
+ },
37
+ "description": "Which features to include"
38
+ },
39
+ "server_url": {
40
+ "type": "string",
41
+ "description": "URL of your license validation server"
42
+ }
43
+ }
44
+ }
45
+ },
46
+ {
47
+ "name": "explain_licensing",
48
+ "description": "Explain how Archergate machine-bound licensing works. Topics: overview, machine-fingerprinting, offline-validation, trial-system, tamper-detection, server-setup, pricing, comparison with alternatives.",
49
+ "inputSchema": {
50
+ "type": "object",
51
+ "required": ["topic"],
52
+ "properties": {
53
+ "topic": {
54
+ "type": "string",
55
+ "enum": ["overview", "machine-fingerprinting", "offline-validation", "trial-system", "tamper-detection", "server-setup", "pricing", "comparison"],
56
+ "description": "Which aspect of licensing to explain"
57
+ }
58
+ }
59
+ }
60
+ },
61
+ {
62
+ "name": "generate_server_config",
63
+ "description": "Generate deployment configuration for the Archergate license validation server. Supports Docker, Fly.io, Railway, VPS (systemd), and bare metal.",
64
+ "inputSchema": {
65
+ "type": "object",
66
+ "required": ["deployment"],
67
+ "properties": {
68
+ "deployment": {
69
+ "type": "string",
70
+ "enum": ["docker", "vps", "fly-io", "railway", "bare-metal"],
71
+ "description": "Deployment target"
72
+ },
73
+ "database": {
74
+ "type": "string",
75
+ "enum": ["sqlite", "postgres"],
76
+ "description": "Database backend"
77
+ },
78
+ "port": {
79
+ "type": "number",
80
+ "description": "Server port"
81
+ }
82
+ }
83
+ }
84
+ },
85
+ {
86
+ "name": "generate_test_license_key",
87
+ "description": "Generate a randomized test license key for development and integration testing.",
88
+ "inputSchema": {
89
+ "type": "object",
90
+ "required": ["app_id"],
91
+ "properties": {
92
+ "app_id": {
93
+ "type": "string",
94
+ "description": "Application identifier"
95
+ },
96
+ "key_format": {
97
+ "type": "string",
98
+ "enum": ["uuid", "short", "alphanumeric"],
99
+ "description": "Key format style"
100
+ }
101
+ }
102
+ }
103
+ }
104
+ ],
105
+ "resources": [
106
+ {
107
+ "uri": "archergate://docs/full",
108
+ "name": "archergate-docs",
109
+ "description": "Complete Archergate SDK documentation including integration guides, API reference, and architecture explanations",
110
+ "mimeType": "text/markdown"
111
+ },
112
+ {
113
+ "uri": "archergate://docs/api",
114
+ "name": "archergate-api",
115
+ "description": "License server REST API reference with request/response schemas for all endpoints",
116
+ "mimeType": "text/markdown"
117
+ }
118
+ ],
119
+ "prompts": [
120
+ {
121
+ "name": "review_license_integration",
122
+ "description": "Review existing license integration code for correctness, security issues, and best practices"
123
+ }
124
+ ],
125
+ "keywords": [
126
+ "licensing",
127
+ "copy-protection",
128
+ "machine-binding",
129
+ "software-protection",
130
+ "drm",
131
+ "indie-developer",
132
+ "vst-plugin",
133
+ "unity",
134
+ "tauri",
135
+ "electron",
136
+ "rust",
137
+ "c",
138
+ "cpp"
139
+ ]
140
+ }