siigo-mcp-server 1.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/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "siigo-mcp-server",
3
+ "version": "1.0.0",
4
+ "description": "Model Context Protocol (MCP) server for Siigo Colombian accounting software API integration",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "tsc",
9
+ "start": "node dist/index.js",
10
+ "dev": "tsx src/index.ts",
11
+ "test": "jest",
12
+ "prepublishOnly": "npm run build",
13
+ "clean": "rm -rf dist"
14
+ },
15
+ "bin": {
16
+ "siigo-mcp": "./bin/siigo-mcp"
17
+ },
18
+ "files": [
19
+ "dist/",
20
+ "bin/",
21
+ "README.md",
22
+ ".env.example"
23
+ ],
24
+ "keywords": [
25
+ "mcp",
26
+ "siigo",
27
+ "accounting",
28
+ "api",
29
+ "colombia",
30
+ "invoicing",
31
+ "model-context-protocol",
32
+ "erp",
33
+ "fintech"
34
+ ],
35
+ "author": "Juan Diego De la Rosa <jdidelarc@gmail.com>",
36
+ "license": "MIT",
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "https://github.com/jdlar1/siigo-mcp.git"
40
+ },
41
+ "bugs": {
42
+ "url": "https://github.com/jdlar1/siigo-mcp/issues"
43
+ },
44
+ "homepage": "https://github.com/jdlar1/siigo-mcp#readme",
45
+ "engines": {
46
+ "node": ">=18.0.0"
47
+ },
48
+ "dependencies": {
49
+ "@modelcontextprotocol/sdk": "^0.6.0",
50
+ "axios": "^1.6.0",
51
+ "dotenv": "^16.3.0"
52
+ },
53
+ "devDependencies": {
54
+ "@types/node": "^20.0.0",
55
+ "tsx": "^4.0.0",
56
+ "typescript": "^5.0.0",
57
+ "jest": "^29.0.0",
58
+ "@types/jest": "^29.0.0"
59
+ }
60
+ }