Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@missionsquad/mcp-msq",
"version": "0.2.3",
"version": "0.2.4",
"description": "MCP server interface for the MissionSquad API",
"type": "module",
"main": "dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ export const UpdateAgentSchema = z.object({
timezoneOffset: NonEmptyString.optional().describe('Timezone offset string (e.g. "-05:00") used when addToday is true.'),
tools: z.array(z.string()).optional().describe('Array of tool function names. Replaces all existing tools.'),
selectedFunctions: z.record(z.array(z.string())).optional().describe('Map of MCP server name to function names. Replaces existing selectedFunctions.'),
temperature: z.number().optional().describe('New temperature setting.'),
maxTokens: z.number().int().optional().describe('New max tokens setting.'),
temperature: z.number().optional().describe('Temperature for model generation (stored in modelOptions). Use -1 or omit to use model default.'),
maxTokens: z.number().int().optional().describe('Max output tokens (stored in modelOptions). Use -1 or omit for unlimited/model default.'),
combineSystemPrompts: z.boolean().optional().describe('Whether to combine system prompts from agent and messages.'),
convertSystemPrompt: z.boolean().optional().describe('Whether to convert additional system prompts to user messages.'),
})
Expand Down
Loading