@k-system/tickr-mcp 0.1.2 → 0.1.3

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 (2) hide show
  1. package/dist/auth.js +1 -1
  2. package/package.json +1 -1
package/dist/auth.js CHANGED
@@ -46,7 +46,7 @@ export async function refreshToken(config) {
46
46
  export async function getAuthHeader(config) {
47
47
  // API key auth — jednoduché, bez expiry
48
48
  if (config.apiKey) {
49
- return config.apiKey;
49
+ return `Bearer ${config.apiKey}`;
50
50
  }
51
51
  // JWT auth — refresh pokud token brzy vyprší (30s buffer)
52
52
  if (currentTokens && currentTokens.expiresAt - Date.now() < 30_000) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k-system/tickr-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "MCP server for Tickr project management — 17 tools for ticket CRUD, triage, labels, cycles, epics",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",