@damper/mcp 0.11.0 → 0.11.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.
Files changed (2) hide show
  1. package/dist/index.js +10 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -10,6 +10,16 @@ if (!API_KEY) {
10
10
  console.error('DAMPER_API_KEY required. Get one from Damper → Settings → API Keys');
11
11
  process.exit(1);
12
12
  }
13
+ // Deprecation notice — hosted version is now available
14
+ console.error('\n⚠️ @damper/mcp (stdio) is deprecated. Switch to the hosted version:\n' +
15
+ '\n' +
16
+ ' "damper": {\n' +
17
+ ' "type": "http",\n' +
18
+ ' "url": "https://api.usedamper.com/mcp",\n' +
19
+ ' "headers": { "Authorization": "Bearer YOUR_API_KEY" }\n' +
20
+ ' }\n' +
21
+ '\n' +
22
+ ' See: https://usedamper.com/docs/mcp\n');
13
23
  // API Client
14
24
  async function api(method, path, body) {
15
25
  const res = await fetch(`${API_URL}${path}`, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@damper/mcp",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "MCP server for Damper task management",
5
5
  "author": "Damper <hello@usedamper.com>",
6
6
  "repository": {