checkbox-mcp-server 1.1.0 → 1.1.1
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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -24,7 +24,7 @@ const API_TOKEN = process.env.CHECKBOX_API_TOKEN ?? '';
|
|
|
24
24
|
function getHeaders() {
|
|
25
25
|
return {
|
|
26
26
|
'Content-Type': 'application/json',
|
|
27
|
-
...(API_TOKEN ? {
|
|
27
|
+
...(API_TOKEN ? { 'X-API-Key': API_TOKEN } : {}),
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
30
|
// ── HTTP helpers ────────────────────────────────────────────────────
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "checkbox-mcp-server",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "MCP server for the Checkbox capability API — lets AI assistants (Claude, Cursor, etc.) manage compliance plans, tasks, documents, and more through the Model Context Protocol.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|