@macula-io/mcp 0.3.0 → 0.3.2
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.
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
// Claude Code MCP client integration.
|
|
2
2
|
//
|
|
3
|
-
// Config path: ~/.claude
|
|
4
|
-
//
|
|
5
|
-
//
|
|
3
|
+
// Config path: ~/.claude.json (a FILE, not inside the ~/.claude/
|
|
4
|
+
// directory) -- this is Claude Code's real user-scope config, storing
|
|
5
|
+
// startup counts, project state, and MCP servers all in one JSON
|
|
6
|
+
// object under a top-level `mcpServers` key. Verified directly (not
|
|
7
|
+
// assumed) 2026-08-29 via `claude mcp add --scope user`, since an
|
|
8
|
+
// earlier guess of `~/.claude/mcp.json` here was simply wrong --
|
|
9
|
+
// Claude Code never reads that path, so every prior install this ran
|
|
10
|
+
// against was silently a no-op for this client. Project-local
|
|
11
|
+
// `.mcp.json` (checked into or living alongside a specific project)
|
|
12
|
+
// takes precedence over this when both define the same server name;
|
|
13
|
+
// this installer only ever writes user scope.
|
|
6
14
|
//
|
|
7
15
|
// Entry format (Claude Code's spec):
|
|
8
16
|
// {
|
|
@@ -30,14 +38,10 @@ import { mergeMcpServer, removeMcpServer, } from "../config_merge.js";
|
|
|
30
38
|
export const CLIENT_ID = "claude-code";
|
|
31
39
|
export const CLIENT_LABEL = "Claude Code";
|
|
32
40
|
export function configPath() {
|
|
33
|
-
return join(homedir(), ".claude
|
|
41
|
+
return join(homedir(), ".claude.json");
|
|
34
42
|
}
|
|
35
43
|
export function isInstalled() {
|
|
36
|
-
|
|
37
|
-
// (or any of the canonical files) is a strong-enough signal for
|
|
38
|
-
// MVP. False positives are harmless (we just write a config file
|
|
39
|
-
// the client can pick up later).
|
|
40
|
-
return existsSync(join(homedir(), ".claude"));
|
|
44
|
+
return existsSync(configPath());
|
|
41
45
|
}
|
|
42
46
|
export async function install() {
|
|
43
47
|
return mergeMcpServer(configPath(), "macula", {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"claude_code.js","sourceRoot":"","sources":["../../../src/install/mcp_clients/claude_code.ts"],"names":[],"mappings":"AAAA,sCAAsC;AACtC,EAAE;AACF,
|
|
1
|
+
{"version":3,"file":"claude_code.js","sourceRoot":"","sources":["../../../src/install/mcp_clients/claude_code.ts"],"names":[],"mappings":"AAAA,sCAAsC;AACtC,EAAE;AACF,iEAAiE;AACjE,sEAAsE;AACtE,iEAAiE;AACjE,oEAAoE;AACpE,kEAAkE;AAClE,iEAAiE;AACjE,qEAAqE;AACrE,8DAA8D;AAC9D,oEAAoE;AACpE,oEAAoE;AACpE,8CAA8C;AAC9C,EAAE;AACF,qCAAqC;AACrC,MAAM;AACN,sBAAsB;AACtB,oBAAoB;AACpB,4BAA4B;AAC5B,+DAA+D;AAC/D,UAAU;AACV,QAAQ;AACR,MAAM;AACN,EAAE;AACF,qEAAqE;AACrE,iEAAiE;AACjE,8DAA8D;AAC9D,uEAAuE;AACvE,uEAAuE;AACvE,sEAAsE;AACtE,kEAAkE;AAClE,qEAAqE;AACrE,8DAA8D;AAE9D,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AACrC,OAAO,EACL,cAAc,EACd,eAAe,GAEhB,MAAM,oBAAoB,CAAC;AAE5B,MAAM,CAAC,MAAM,SAAS,GAAG,aAAa,CAAC;AACvC,MAAM,CAAC,MAAM,YAAY,GAAG,aAAa,CAAC;AAE1C,MAAM,UAAU,UAAU;IACxB,OAAO,IAAI,CAAC,OAAO,EAAE,EAAE,cAAc,CAAC,CAAC;AACzC,CAAC;AAED,MAAM,UAAU,WAAW;IACzB,OAAO,UAAU,CAAC,UAAU,EAAE,CAAC,CAAC;AAClC,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,OAAO;IAC3B,OAAO,cAAc,CAAC,UAAU,EAAE,EAAE,QAAQ,EAAE;QAC5C,OAAO,EAAE,KAAK;QACd,IAAI,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,gBAAgB,EAAE,YAAY,CAAC;KACnD,CAAC,CAAC;AACL,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,SAAS;IAC7B,OAAO,eAAe,CAAC,UAAU,EAAE,EAAE,QAAQ,CAAC,CAAC;AACjD,CAAC"}
|