@hybridlabor-api/bdb-antigravity-skills 1.1.6 → 1.1.8
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/package.json +1 -1
- package/mcps/bdb-resolume-mcp/index.js +0 -18
- package/mcps/bdb-resolume-mcp/package.json +0 -1
- package/mcps/bdb-unrealengine5-mcp/index.js +0 -18
- package/mcps/bdb-unrealengine5-mcp/package.json +0 -1
- package/mcps/bdb_davinci_mcp/bdb_davinci_mcp/__init__.py +0 -0
- package/mcps/bdb_davinci_mcp/bdb_davinci_mcp/__main__.py +0 -21
- package/mcps/bdb_ma3_mcp/bdb_ma3_mcp/__init__.py +0 -0
- package/mcps/bdb_ma3_mcp/bdb_ma3_mcp/__main__.py +0 -21
- package/mcps/bdb_rhino_mcp/bdb_rhino_mcp/__init__.py +0 -0
- package/mcps/bdb_rhino_mcp/bdb_rhino_mcp/__main__.py +0 -21
package/package.json
CHANGED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
const readline = require('readline');
|
|
3
|
-
const rl = readline.createInterface({
|
|
4
|
-
input: process.stdin,
|
|
5
|
-
output: process.stdout,
|
|
6
|
-
terminal: false
|
|
7
|
-
});
|
|
8
|
-
rl.on('line', (line) => {
|
|
9
|
-
if (!line.trim()) return;
|
|
10
|
-
try {
|
|
11
|
-
const req = JSON.parse(line);
|
|
12
|
-
if (req.method === 'initialize') {
|
|
13
|
-
console.log(JSON.stringify({ jsonrpc: '2.0', id: req.id, result: { protocolVersion: '2024-11-05', capabilities: { tools: {} }, serverInfo: { name: 'unreal-mcp', version: '1.0.0' } } }));
|
|
14
|
-
} else if (req.method === 'tools/list') {
|
|
15
|
-
console.log(JSON.stringify({ jsonrpc: '2.0', id: req.id, result: { tools: [] } }));
|
|
16
|
-
}
|
|
17
|
-
} catch (e) {}
|
|
18
|
-
});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{ "name": "bdb-resolume-mcp", "version": "1.0.0", "main": "index.js" }
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
const readline = require('readline');
|
|
3
|
-
const rl = readline.createInterface({
|
|
4
|
-
input: process.stdin,
|
|
5
|
-
output: process.stdout,
|
|
6
|
-
terminal: false
|
|
7
|
-
});
|
|
8
|
-
rl.on('line', (line) => {
|
|
9
|
-
if (!line.trim()) return;
|
|
10
|
-
try {
|
|
11
|
-
const req = JSON.parse(line);
|
|
12
|
-
if (req.method === 'initialize') {
|
|
13
|
-
console.log(JSON.stringify({ jsonrpc: '2.0', id: req.id, result: { protocolVersion: '2024-11-05', capabilities: { tools: {} }, serverInfo: { name: 'unreal-mcp', version: '1.0.0' } } }));
|
|
14
|
-
} else if (req.method === 'tools/list') {
|
|
15
|
-
console.log(JSON.stringify({ jsonrpc: '2.0', id: req.id, result: { tools: [] } }));
|
|
16
|
-
}
|
|
17
|
-
} catch (e) {}
|
|
18
|
-
});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{ "name": "bdb-unrealengine5-mcp", "version": "1.0.0", "main": "index.js" }
|
|
File without changes
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import sys, json
|
|
2
|
-
def main():
|
|
3
|
-
while True:
|
|
4
|
-
line = sys.stdin.readline()
|
|
5
|
-
if not line: break
|
|
6
|
-
line = line.strip()
|
|
7
|
-
if not line: continue
|
|
8
|
-
try:
|
|
9
|
-
req = json.loads(line)
|
|
10
|
-
if req.get("method") == "initialize":
|
|
11
|
-
res = {"jsonrpc": "2.0", "id": req.get("id"), "result": {"protocolVersion": "2024-11-05", "capabilities": {"tools": {}}, "serverInfo": {"name": "bdb_davinci_mcp", "version": "1.0.0"}}}
|
|
12
|
-
sys.stdout.write(json.dumps(res) + "\n")
|
|
13
|
-
sys.stdout.flush()
|
|
14
|
-
elif req.get("method") == "tools/list":
|
|
15
|
-
res = {"jsonrpc": "2.0", "id": req.get("id"), "result": {"tools": []}}
|
|
16
|
-
sys.stdout.write(json.dumps(res) + "\n")
|
|
17
|
-
sys.stdout.flush()
|
|
18
|
-
except Exception:
|
|
19
|
-
pass
|
|
20
|
-
if __name__ == "__main__":
|
|
21
|
-
main()
|
|
File without changes
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import sys, json
|
|
2
|
-
def main():
|
|
3
|
-
while True:
|
|
4
|
-
line = sys.stdin.readline()
|
|
5
|
-
if not line: break
|
|
6
|
-
line = line.strip()
|
|
7
|
-
if not line: continue
|
|
8
|
-
try:
|
|
9
|
-
req = json.loads(line)
|
|
10
|
-
if req.get("method") == "initialize":
|
|
11
|
-
res = {"jsonrpc": "2.0", "id": req.get("id"), "result": {"protocolVersion": "2024-11-05", "capabilities": {"tools": {}}, "serverInfo": {"name": "bdb_ma3_mcp", "version": "1.0.0"}}}
|
|
12
|
-
sys.stdout.write(json.dumps(res) + "\n")
|
|
13
|
-
sys.stdout.flush()
|
|
14
|
-
elif req.get("method") == "tools/list":
|
|
15
|
-
res = {"jsonrpc": "2.0", "id": req.get("id"), "result": {"tools": []}}
|
|
16
|
-
sys.stdout.write(json.dumps(res) + "\n")
|
|
17
|
-
sys.stdout.flush()
|
|
18
|
-
except Exception:
|
|
19
|
-
pass
|
|
20
|
-
if __name__ == "__main__":
|
|
21
|
-
main()
|
|
File without changes
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import sys, json
|
|
2
|
-
def main():
|
|
3
|
-
while True:
|
|
4
|
-
line = sys.stdin.readline()
|
|
5
|
-
if not line: break
|
|
6
|
-
line = line.strip()
|
|
7
|
-
if not line: continue
|
|
8
|
-
try:
|
|
9
|
-
req = json.loads(line)
|
|
10
|
-
if req.get("method") == "initialize":
|
|
11
|
-
res = {"jsonrpc": "2.0", "id": req.get("id"), "result": {"protocolVersion": "2024-11-05", "capabilities": {"tools": {}}, "serverInfo": {"name": "bdb_rhino_mcp", "version": "1.0.0"}}}
|
|
12
|
-
sys.stdout.write(json.dumps(res) + "\n")
|
|
13
|
-
sys.stdout.flush()
|
|
14
|
-
elif req.get("method") == "tools/list":
|
|
15
|
-
res = {"jsonrpc": "2.0", "id": req.get("id"), "result": {"tools": []}}
|
|
16
|
-
sys.stdout.write(json.dumps(res) + "\n")
|
|
17
|
-
sys.stdout.flush()
|
|
18
|
-
except Exception:
|
|
19
|
-
pass
|
|
20
|
-
if __name__ == "__main__":
|
|
21
|
-
main()
|