@tasktimepro/agent-bridge 0.1.0
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/README.md +29 -0
- package/dist/tasktime-agent-bridge.mjs +7077 -0
- package/package.json +41 -0
- package/server.json +31 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# TaskTime Pro Agent Bridge
|
|
2
|
+
|
|
3
|
+
`@tasktimepro/agent-bridge` provides the `tasktime-agent-bridge` binary used by same-device AI agents to talk to TaskTime Pro over MCP stdio.
|
|
4
|
+
|
|
5
|
+
The bridge does not read or write TaskTime Pro IndexedDB/Yjs data directly. It starts a loopback app-session endpoint, waits for the running TaskTime Pro browser app to pair through Account > Agent Access, and forwards MCP tool calls to the paired browser app.
|
|
6
|
+
|
|
7
|
+
Install and run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx @tasktimepro/agent-bridge --app-url https://tasktime.pro
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Useful commands:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
tasktime-agent-bridge --manifest
|
|
17
|
+
tasktime-agent-bridge --app-url https://tasktime.pro
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Official MCP Registry name: `pro.tasktime/agent-bridge`.
|
|
21
|
+
|
|
22
|
+
Public docs:
|
|
23
|
+
|
|
24
|
+
- https://tasktime.pro/agents/
|
|
25
|
+
- https://tasktime.pro/agents/quickstart/
|
|
26
|
+
- https://tasktime.pro/agents/security/
|
|
27
|
+
- https://tasktime.pro/agents/tools/
|
|
28
|
+
|
|
29
|
+
License: `AGPL-3.0-only`.
|