workfullcircle-mcp 2.0.6 → 2.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "workfullcircle-mcp",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "description": "WorkFullCircle MCP - Universal AI memory that works anywhere",
5
5
  "bin": {
6
6
  "workfullcircle-mcp": "bin/workfullcircle-mcp.js"
@@ -40,12 +40,14 @@ function getTargets() {
40
40
  }
41
41
 
42
42
  function buildConfig(token, projectId) {
43
- // Use local bridge - it's reliable and tested
43
+ // Use local bridge with hosted server URL - best UX for users
44
44
  const args = [
45
45
  '-y',
46
46
  'workfullcircle-mcp-local',
47
47
  '--token',
48
- token
48
+ token,
49
+ '--server-url',
50
+ 'https://workfullcircle.com'
49
51
  ];
50
52
  if (projectId) {
51
53
  args.push('--project', projectId);