@telos.ready/mcp 1.9.0 → 1.9.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/build/index.js +1 -1
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -487,7 +487,7 @@ server.tool("get-resource-details", "Gets detailed information about a specific
487
487
  resourceName: z
488
488
  .string()
489
489
  .describe("The name of the resource to get details for."),
490
- groupName: z.string().describe("The group name of the resource (optional)."),
490
+ groupName: z.string().optional().describe("The group name of the resource (optional)."),
491
491
  }, async ({ applicationSlug, resourceName, groupName }) => {
492
492
  try {
493
493
  const result = await telosClient.post("/mcp/get-resource-details", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telos.ready/mcp",
3
- "version": "1.9.0",
3
+ "version": "1.9.1",
4
4
  "description": "Telos MCP server for managing tickets and project tasks",
5
5
  "main": "build/index.js",
6
6
  "type": "module",