-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.04 KB
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
{
"name": "click-to-mcp",
"version": "0.5.0",
"description": "Auto-wrap any Click/typer CLI as an MCP server — with auto-discovery, stdio, HTTP+SSE, and Streamable HTTP transport",
"keywords": [
"mcp",
"model-context-protocol",
"click",
"typer",
"cli",
"ai",
"agent",
"mcp-server",
"auto-discovery",
"sse",
"stdio",
"llm-tools",
"ai-agent",
"developer-tools",
"python-cli"
],
"homepage": "https://github.com/Coding-Dev-Tools/click-to-mcp",
"repository": "https://github.com/Coding-Dev-Tools/click-to-mcp",
"license": "Apache-2.0",
"author": "Revenue Holdings",
"bin": {
"click-to-mcp": "cli.js",
"click-to-mcp-demo": "cli-demo.js"
},
"files": [
"cli.js",
"cli-demo.js"
],
"engines": {
"node": ">=14"
},
"os": [
"linux",
"darwin",
"win32"
],
"scripts": {
"test": "node tests/test_cli_wrapper.js"
},
"bugs": {
"url": "https://github.com/Coding-Dev-Tools/click-to-mcp/issues"
},
"publishConfig": {
"access": "public"
}
}