@ourroadmaps/mcp 0.30.0 → 0.30.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.
Files changed (2) hide show
  1. package/dist/index.js +10 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -280,6 +280,7 @@ var audienceSchema = z2.object({
280
280
  id: z2.string().uuid(),
281
281
  organizationId: z2.string(),
282
282
  name: z2.string(),
283
+ type: z2.enum(["stakeholder", "persona"]).nullable(),
283
284
  description: z2.string().nullable(),
284
285
  order: z2.number().int(),
285
286
  createdAt: z2.string(),
@@ -614,6 +615,8 @@ var roadmapSchema = z11.object({
614
615
  title: z11.string(),
615
616
  horizon: horizonSchema.nullable(),
616
617
  status: roadmapStatusSchema.nullable(),
618
+ phase: z11.string().nullable(),
619
+ phaseStep: z11.string().nullable(),
617
620
  value: effortSchema.nullable(),
618
621
  effort: effortSchema.nullable(),
619
622
  order: z11.number().int(),
@@ -1189,7 +1192,7 @@ var uploadProductDesignMediaInput = {
1189
1192
  filePath: z15.string().describe("Absolute path to the image or video file on disk"),
1190
1193
  description: z15.string().optional().describe("Optional description of the media")
1191
1194
  };
1192
- var updateProductDesignMediaInput2 = {
1195
+ var updateProductDesignMediaInput = {
1193
1196
  productId: idField("product"),
1194
1197
  mediaId: idField("design media"),
1195
1198
  description: z15.string().nullable().describe("New description for the media")
@@ -1425,6 +1428,10 @@ class ApiClient {
1425
1428
  searchParams.set("horizon", params.horizon);
1426
1429
  if (params?.query)
1427
1430
  searchParams.set("query", params.query);
1431
+ if (params?.phase)
1432
+ searchParams.set("phase", params.phase);
1433
+ if (params?.phaseStep)
1434
+ searchParams.set("phaseStep", params.phaseStep);
1428
1435
  const queryString = searchParams.toString();
1429
1436
  const path = queryString ? `/v1/roadmaps?${queryString}` : "/v1/roadmaps";
1430
1437
  return await this.request(path);
@@ -2437,11 +2444,9 @@ Use this as your FIRST call when starting work on a roadmap to understand the fu
2437
2444
  })),
2438
2445
  audiences: audiences.map((a) => ({
2439
2446
  id: a.id,
2447
+ name: a.name,
2440
2448
  type: a.type,
2441
- role: a.role,
2442
- likes: a.likes,
2443
- dislikes: a.dislikes,
2444
- priorities: a.priorities
2449
+ description: a.description
2445
2450
  })),
2446
2451
  scenarios: scenarios.map((s) => ({
2447
2452
  id: s.id,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ourroadmaps/mcp",
3
- "version": "0.30.0",
3
+ "version": "0.30.1",
4
4
  "description": "MCP server for OurRoadmaps - manage roadmaps, features, and ideas from Claude Code",
5
5
  "type": "module",
6
6
  "bin": {