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 +5 -0
- package/package.json +1 -1
- package/src/cli.js +1 -0
- package/src/server-client.js +2 -1
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
package/src/cli.js
CHANGED
package/src/server-client.js
CHANGED
|
@@ -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 });
|