@aioproductoscom/mcp-pm 0.2.0 → 0.3.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 +1 -0
- package/dist/client.js +4 -0
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,6 +47,7 @@ self-hosted platform.
|
|
|
47
47
|
| `create_task` | new task; `feature_id` / `insight_id` link it to the spine |
|
|
48
48
|
| `update_task` | change status, priority, fields, assignees |
|
|
49
49
|
| `comment_on_task` | add a comment |
|
|
50
|
+
| `get_product_brain` | a grounded read-only snapshot of your product (revenue, accounts, web + product analytics, features, signals, open work) — so your host model reasons about it **on your own subscription** |
|
|
50
51
|
|
|
51
52
|
## Local build (until published to npm)
|
|
52
53
|
|
package/dist/client.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -17,7 +17,7 @@ function text(data) {
|
|
|
17
17
|
],
|
|
18
18
|
};
|
|
19
19
|
}
|
|
20
|
-
const server = new McpServer({ name: "productos-pm", version: "0.
|
|
20
|
+
const server = new McpServer({ name: "productos-pm", version: "0.3.0" }, {
|
|
21
21
|
instructions: "You manage ProductOS PM tickets on behalf of the connected member — the board is the team's " +
|
|
22
22
|
"source of truth, so work precisely. Resolve names to ids with pm_meta before create_task / " +
|
|
23
23
|
"update_task; never guess an id. Link a task to the spine (feature_id / insight_id) whenever the " +
|
|
@@ -50,6 +50,7 @@ server.tool("update_task", "Update a task's fields (status, priority, title, des
|
|
|
50
50
|
assignee_member_ids: z.array(z.string()).optional(),
|
|
51
51
|
}, async ({ id, ...body }) => text(await client.updateTask(id, body)));
|
|
52
52
|
server.tool("comment_on_task", "Add a comment to a task.", { id: z.string(), body: z.string() }, async (a) => text(await client.comment(a.id, a.body)));
|
|
53
|
+
server.tool("get_product_brain", "Read a grounded, read-only snapshot of the org's product so YOU can reason about it on your own model: revenue + top paying accounts, web + product analytics, features, recent verbatim customer signals, and open work. Optional product_id; omit for the primary product. Returns the brain text plus the list of products you can ask about.", { product_id: z.string().optional() }, async (a) => text(await client.brain(a.product_id)));
|
|
53
54
|
async function main() {
|
|
54
55
|
await server.connect(new StdioServerTransport());
|
|
55
56
|
}
|
package/package.json
CHANGED