-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "pomera-ai-commander",
"mcpName": "io.github.matbanik/pomera",
"version": "1.5.1",
"description": "Text processing toolkit with 12 MCP tools for AI assistants - case transformation, encoding, hashing, text analysis, smart diff, and notes management",
"main": "pomera_mcp_server.py",
"bin": {
"pomera-ai-commander": "./bin/pomera-ai-commander.js",
"pomera-mcp": "./bin/pomera-ai-commander.js",
"pomera": "./bin/pomera.js",
"pomera-create-shortcut": "./bin/pomera-create-shortcut.js"
},
"scripts": {
"start": "python pomera_mcp_server.py",
"mcp": "python pomera_mcp_server.py",
"list-tools": "python pomera_mcp_server.py --list-tools",
"test": "python -m pytest",
"create-shortcut": "node scripts/postinstall.js",
"postinstall": "node scripts/postinstall.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"text-processing",
"ai-tools",
"pomera",
"text-manipulation",
"encoding",
"hashing",
"notes",
"cursor",
"claude-desktop"
],
"author": "matbanik",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/matbanik/Pomera-AI-Commander.git"
},
"bugs": {
"url": "https://github.com/matbanik/Pomera-AI-Commander/issues"
},
"homepage": "https://github.com/matbanik/Pomera-AI-Commander#readme",
"engines": {
"node": ">=14.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"files": [
"bin/",
"core/",
"tools/",
"pomera/",
"scripts/",
"resources/",
"pomera_mcp_server.py",
"pomera.py",
"create_shortcut.py",
"migrate_data.py",
"mcp.json",
"README.md",
"LICENSE",
"requirements.txt"
],
"dependencies": {}
}