@insforge/mcp 1.2.6 → 1.2.7
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/README.md +21 -0
- package/dist/{chunk-3S2HFIGS.js → chunk-Z3FXBI3Z.js} +1324 -691
- package/dist/http-server.js +2087 -130
- package/dist/index.js +3 -2
- package/package.json +32 -7
- package/server.json +29 -6
package/README.md
CHANGED
|
@@ -86,6 +86,27 @@ If you prefer to manually configure your MCP client, add this to your MCP settin
|
|
|
86
86
|
|
|
87
87
|
For detailed setup instructions, see the [Insforge Documentation](https://docs.insforge.dev).
|
|
88
88
|
|
|
89
|
+
## 🛠️ Development
|
|
90
|
+
|
|
91
|
+
If you are contributing to this project or running it locally:
|
|
92
|
+
|
|
93
|
+
```bash
|
|
94
|
+
# Install dependencies
|
|
95
|
+
npm install
|
|
96
|
+
|
|
97
|
+
# Run unit tests
|
|
98
|
+
npm run test
|
|
99
|
+
|
|
100
|
+
# Run linter (static analysis)
|
|
101
|
+
npm run lint
|
|
102
|
+
|
|
103
|
+
# Auto-format code
|
|
104
|
+
npm run format
|
|
105
|
+
|
|
106
|
+
# Build the package
|
|
107
|
+
npm run build
|
|
108
|
+
```
|
|
109
|
+
|
|
89
110
|
## 📄 License
|
|
90
111
|
|
|
91
112
|
Apache License 2.0 - see the [LICENSE](LICENSE) file for details.
|