@proplandev/mcp 1.0.2 → 1.0.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.
package/index.js CHANGED
@@ -356,7 +356,7 @@ server.tool(
356
356
  'export_to_cloud',
357
357
  'Sync local projects to the ProPlan dashboard. Only works in local mode. New projects are inserted, changed projects updated, unchanged ones skipped.',
358
358
  {
359
- mcp_token: z.string().describe('Your MCP token from app.proplan.dev → Settings → Claude Code Integration.'),
359
+ mcp_token: z.string().describe('Your MCP token from project-planner-7zw4.onrender.com → Settings → Claude Code Integration.'),
360
360
  api_url: z.string().optional().describe('Override the API base URL. Defaults to the production ProPlan backend.'),
361
361
  },
362
362
  async ({ mcp_token, api_url }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proplandev/mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "MCP server for Claude Code — persistent project memory, session continuity, and structural repo analysis",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -7,7 +7,7 @@ export async function exportToCloud({ mcp_token, api_url }) {
7
7
  const resolvedApiUrl = api_url || process.env.PROPLAN_API_URL || 'https://project-planner-7zw4.onrender.com';
8
8
 
9
9
  if (!mcp_token) {
10
- throw new Error('mcp_token is required. Generate one at app.proplan.dev → Settings → Claude Code Integration.');
10
+ throw new Error('mcp_token is required. Generate one at project-planner-7zw4.onrender.com → Settings → Claude Code Integration.');
11
11
  }
12
12
 
13
13
  const dbPath = join(process.cwd(), '.project-planner', 'db.sqlite');