You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCreate a new connect session for an employer\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/session_new_response',\n $defs: {\n session_new_response: {\n type: 'object',\n properties: {\n connect_url: {\n type: 'string',\n description: 'The Connect URL to redirect the user to for authentication'\n },\n session_id: {\n type: 'string',\n description: 'The unique identifier for the created connect session'\n }\n },\n required: [ 'connect_url',\n 'session_id'\n ]\n }\n }\n}\n```",
21
+
"When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCreate a new connect session for an employer\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/session_connect_response',\n $defs: {\n session_connect_response: {\n type: 'object',\n properties: {\n connect_url: {\n type: 'string',\n description: 'The Connect URL to redirect the user to for authentication'\n },\n session_id: {\n type: 'string',\n description: 'The unique identifier for the created connect session'\n }\n },\n required: [ 'connect_url',\n 'session_id'\n ]\n }\n }\n}\n```",
Copy file name to clipboardExpand all lines: packages/mcp-server/src/tools/request-forwarding/forward-request-forwarding.ts
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -37,16 +37,16 @@ export const tool: Tool = {
37
37
description:
38
38
'The body for the forwarded request. This value must be specified as either a string or a valid JSON object.',
39
39
},
40
-
headers: {
40
+
params: {
41
41
type: 'object',
42
42
description:
43
-
'The HTTP headers to include on the forwarded request. This value must be specified as an object of key-value pairs. Example: `{"Content-Type": "application/xml", "X-API-Version": "v1" }`',
43
+
'The query parameters for the forwarded request. This value must be specified as a valid JSON object rather than a query string.',
44
44
additionalProperties: true,
45
45
},
46
-
params: {
46
+
request_headers: {
47
47
type: 'object',
48
48
description:
49
-
'The query parameters for the forwarded request. This value must be specified as a valid JSON object rather than a query string.',
49
+
'The HTTP headers to include on the forwarded request. This value must be specified as an object of key-value pairs. Example: `{"Content-Type": "application/xml", "X-API-Version": "v1" }`',
0 commit comments