super-feedback-mcp 0.1.0 → 0.1.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/dist/index.js CHANGED
@@ -51,23 +51,7 @@ Use this to understand what changes clients have requested.`,
51
51
  outputSchema: {
52
52
  projectName: z.string(),
53
53
  totalCount: z.number(),
54
- comments: z.array(z.object({
55
- id: z.string(),
56
- index: z.number(),
57
- feedback: z.string(),
58
- author: z.string(),
59
- status: z.string(),
60
- createdAt: z.string(),
61
- element: z.any().nullable(),
62
- page: z.object({
63
- url: z.string(),
64
- path: z.string(),
65
- }),
66
- hints: z.object({
67
- possibleFiles: z.array(z.string()),
68
- searchTerms: z.array(z.string()),
69
- }),
70
- })),
54
+ comments: z.array(z.any()), // Flexible schema to allow all API fields
71
55
  },
72
56
  }, async ({ includeResolved = false, pageFilter }) => {
73
57
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "super-feedback-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for Super Feedback - enables AI agents to query and resolve client feedback",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -90,23 +90,7 @@ Use this to understand what changes clients have requested.`,
90
90
  outputSchema: {
91
91
  projectName: z.string(),
92
92
  totalCount: z.number(),
93
- comments: z.array(z.object({
94
- id: z.string(),
95
- index: z.number(),
96
- feedback: z.string(),
97
- author: z.string(),
98
- status: z.string(),
99
- createdAt: z.string(),
100
- element: z.any().nullable(),
101
- page: z.object({
102
- url: z.string(),
103
- path: z.string(),
104
- }),
105
- hints: z.object({
106
- possibleFiles: z.array(z.string()),
107
- searchTerms: z.array(z.string()),
108
- }),
109
- })),
93
+ comments: z.array(z.any()), // Flexible schema to allow all API fields
110
94
  },
111
95
  },
112
96
  async ({ includeResolved = false, pageFilter }) => {