We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c21d699 + fb80aa7 commit ce56789Copy full SHA for ce56789
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@doitintl/doit-mcp-server",
3
- "version": "0.1.32",
+ "version": "0.1.33",
4
"description": "DoiT official MCP Server",
5
"keywords": [
6
"doit",
src/utils/util.ts
@@ -129,6 +129,9 @@ export async function makeDoitRequest<T>(
129
requestOptions.body = JSON.stringify(body);
130
}
131
132
+ // add mcp params to the url
133
+ url += `&mcp=true`;
134
+
135
const response = await fetch(url, requestOptions);
136
137
if (!response.ok) {
0 commit comments