beplus-mcp 0.8.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.
Files changed (3) hide show
  1. package/README.md +125 -0
  2. package/dist/index.js +1238 -0
  3. package/package.json +44 -0
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "beplus-mcp",
3
+ "version": "0.8.0",
4
+ "description": "Conector MCP da equipe BePlus — gere imagens/vídeos/áudio e consulte calls, projetos e clientes pela sua conta BePlus (diamantes, limites e histórico aplicados pela plataforma).",
5
+ "type": "module",
6
+ "bin": {
7
+ "beplus-mcp": "dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "engines": {
14
+ "node": ">=18"
15
+ },
16
+ "scripts": {
17
+ "dev": "tsx src/index.ts",
18
+ "build": "tsup",
19
+ "typecheck": "tsc --noEmit",
20
+ "start": "node dist/index.js",
21
+ "prepublishOnly": "npm run build"
22
+ },
23
+ "keywords": [
24
+ "mcp",
25
+ "model-context-protocol",
26
+ "beplus",
27
+ "ia-lab",
28
+ "calls",
29
+ "ai",
30
+ "image-generation",
31
+ "video-generation"
32
+ ],
33
+ "license": "UNLICENSED",
34
+ "dependencies": {
35
+ "@modelcontextprotocol/sdk": "^1.12.0",
36
+ "zod": "^3.25.0"
37
+ },
38
+ "devDependencies": {
39
+ "@types/node": "^20.14.0",
40
+ "tsup": "^8.3.0",
41
+ "tsx": "^4.19.0",
42
+ "typescript": "^5.6.0"
43
+ }
44
+ }