fathom-mcp 0.3.0 → 0.3.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.1 (2026-02-26)
4
+
5
+ - **Agent type registration** — init wizard sends primary agent type when registering workspace with server
6
+ - **Terminal bypass_permissions** — respects per-workspace session settings instead of always forcing bypass
7
+
3
8
  ## 0.2.0 (2026-02-26)
4
9
 
5
10
  Multi-agent support.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fathom-mcp",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "MCP server for Fathom — vault operations, search, rooms, and cross-workspace communication",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -410,6 +410,7 @@ async function runInit() {
410
410
  vault,
411
411
  description,
412
412
  agents: selectedAgents,
413
+ type: selectedAgents[0] || "local",
413
414
  });
414
415
  if (regResult.ok) {
415
416
  console.log(` ✓ Registered workspace "${workspace}" with server`);
@@ -104,11 +104,12 @@ export function createClient(config) {
104
104
  return request("GET", "/api/workspaces/profiles");
105
105
  }
106
106
 
107
- async function registerWorkspace(name, projectPath, { vault, description, agents, architecture } = {}) {
107
+ async function registerWorkspace(name, projectPath, { vault, description, agents, architecture, type } = {}) {
108
108
  const body = { name, path: projectPath };
109
109
  if (vault) body.vault = vault;
110
110
  if (description) body.description = description;
111
111
  if (agents && agents.length > 0) body.agents = agents;
112
+ if (type) body.type = type;
112
113
  // Legacy fallback
113
114
  if (architecture && !agents?.length) body.architecture = architecture;
114
115
  return request("POST", "/api/workspaces", { body });