venafi-cloud-ca 2.0.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/README.md +93 -0
- package/bundle.mjs +32660 -0
- package/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "venafi-cloud-ca",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "MCP server providing CA connector-specific knowledge, templates, and tools for building Venafi TLS Protect Cloud CA connectors",
|
|
5
|
+
"main": "bundle.mjs",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"venafi-cloud-ca": "bundle.mjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bundle.mjs",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsc",
|
|
16
|
+
"prepare": "npm run build",
|
|
17
|
+
"start": "node bundle.mjs"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"mcp",
|
|
21
|
+
"model-context-protocol",
|
|
22
|
+
"venafi",
|
|
23
|
+
"tls-protect-cloud",
|
|
24
|
+
"ca-connector",
|
|
25
|
+
"certificate-authority",
|
|
26
|
+
"certificate-issuance",
|
|
27
|
+
"certificate-import",
|
|
28
|
+
"claude"
|
|
29
|
+
],
|
|
30
|
+
"author": "thadfield",
|
|
31
|
+
"license": "Apache-2.0",
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "https://github.com/abhadfield/venafi-integration-mcps"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@modelcontextprotocol/sdk": "^1.12.1"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"typescript": "^5.7.0",
|
|
41
|
+
"@types/node": "^22.0.0"
|
|
42
|
+
}
|
|
43
|
+
}
|