@fruggr/zendesk-mcp-server 1.7.0 → 1.8.0
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/README.md +38 -3
- package/dist/index.js +265 -78
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":[],"sources":["../src/auth/api-token.ts","../src/utils/logger.ts","../src/constants.ts","../src/auth/browser-oauth.ts","../src/auth/token-store.ts","../src/config.ts","../src/routing/registry.ts","../src/client/zendesk-api.ts","../src/utils/article-sections.ts","../src/utils/formatting.ts","../src/utils/pagination.ts","../src/tools/help-center.ts","../src/tools/search.ts","../src/tools/tickets.ts","../src/tools/users.ts","../src/tools/index.ts","../src/utils/package-info.ts","../src/server.ts","../src/transports/stdio.ts","../src/index.ts"],"sourcesContent":["/**\n * API token authentication for stdio transport.\n * Uses Basic auth: base64(email/token:api_token)\n */\nexport const buildBasicAuthHeader = (email: string, apiToken: string): string => {\n const credentials = `${email}/token:${apiToken}`;\n return `Basic ${Buffer.from(credentials).toString('base64')}`;\n};\n","import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';\nimport type { LogLevel } from '../config';\n\ntype Fields = Record<string, unknown>;\n\n/**\n * Minimal structured logger with two sinks:\n * - stderr (always, gated by the configured level) — the universal floor that\n * every mainstream MCP client captures to a log file;\n * - MCP `notifications/message` (when a server is attached and advertises the\n * `logging` capability) — surfaced by clients that support it, ignored\n * gracefully by those that don't.\n *\n * Both sinks share a single level gate (`LOG_LEVEL`); MCP clients may further\n * raise the floor via `logging/setLevel`, which the SDK filters on its own.\n */\nexport interface Logger {\n debug(event: string, fields?: Fields): void;\n info(event: string, fields?: Fields): void;\n warn(event: string, fields?: Fields): void;\n error(event: string, fields?: Fields): void;\n /** Attach an McpServer so logs are also emitted as MCP notifications. */\n attachServer(server: Pick<McpServer, 'sendLoggingMessage'>): void;\n}\n\nconst SEVERITY: Record<LogLevel, number> = { debug: 0, info: 1, warn: 2, error: 3 };\n\n// Our 4 levels mapped onto the MCP logging levels (note: `warning`, not `warn`).\nconst MCP_LEVEL: Record<LogLevel, 'debug' | 'info' | 'warning' | 'error'> = {\n debug: 'debug',\n info: 'info',\n warn: 'warning',\n error: 'error',\n};\n\n// Field keys whose values must never reach a sink, matched after normalising\n// (lowercase, separators stripped) so `access_token`, `accessToken` and\n// `ACCESS-TOKEN` all collapse to the same key. Diagnostic fields such as\n// `errorCode`, `status` or `error` (a message) are intentionally NOT listed.\nconst REDACTED_KEYS = new Set([\n 'token',\n 'accesstoken',\n 'refreshtoken',\n 'code',\n 'codeverifier',\n 'authorization',\n 'password',\n 'secret',\n 'apitoken',\n 'bearer',\n]);\n\nconst isSensitive = (key: string): boolean =>\n REDACTED_KEYS.has(key.toLowerCase().replace(/[_-]/g, ''));\n\n// Recursively redact: a sensitive *key* anywhere in the tree (top-level or\n// nested in objects/arrays) has its value replaced, so `{ oauth: { token } }`\n// can't leak. Primitives are returned as-is.\nconst redactValue = (value: unknown): unknown => {\n if (Array.isArray(value)) return value.map(redactValue);\n if (value && typeof value === 'object') {\n const out: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(value as Record<string, unknown>)) {\n out[key] = isSensitive(key) ? '[REDACTED]' : redactValue(val);\n }\n return out;\n }\n return value;\n};\n\nconst renderValue = (value: unknown): string => {\n if (typeof value === 'string') return value;\n if (typeof value === 'number' || typeof value === 'boolean' || value === null) {\n return String(value);\n }\n try {\n return JSON.stringify(value);\n } catch {\n return '[unserializable]';\n }\n};\n\nconst formatLine = (level: LogLevel, event: string, fields: Fields): string => {\n const parts = Object.entries(fields).map(([key, value]) => `${key}=${renderValue(value)}`);\n return `[zendesk-mcp] [${level}] ${event}${parts.length ? ` ${parts.join(' ')}` : ''}`;\n};\n\nconst noop = (): void => {};\n\nexport const silentLogger: Logger = {\n debug: noop,\n info: noop,\n warn: noop,\n error: noop,\n attachServer: noop,\n};\n\nexport const createLogger = (level: LogLevel): Logger => {\n const min = SEVERITY[level];\n let server: Pick<McpServer, 'sendLoggingMessage'> | undefined;\n\n const emit = (lvl: LogLevel, event: string, fields?: Fields): void => {\n if (SEVERITY[lvl] < min) return;\n\n const safe = fields ? (redactValue(fields) as Fields) : {};\n console.error(formatLine(lvl, event, safe));\n\n if (server) {\n try {\n void server\n .sendLoggingMessage({\n level: MCP_LEVEL[lvl],\n logger: 'zendesk-mcp-server',\n // `event` last so a caller-supplied `fields.event` can't shadow the\n // canonical event name.\n data: { ...safe, event },\n })\n .catch(noop);\n } catch {\n // Forwarding is best-effort (e.g. transport not connected yet);\n // it must never break the flow that emitted the log.\n }\n }\n };\n\n return {\n debug: (event, fields) => emit('debug', event, fields),\n info: (event, fields) => emit('info', event, fields),\n warn: (event, fields) => emit('warn', event, fields),\n error: (event, fields) => emit('error', event, fields),\n attachServer: (s) => {\n server = s;\n },\n };\n};\n","export const CHARACTER_LIMIT = 25_000;\nexport const DEFAULT_PAGE_SIZE = 100;\nexport const MAX_PAGE_SIZE = 100;\nexport const TOKEN_CACHE_TTL_MS = 5 * 60 * 1000;\n\n// Per-attachment cap for inline image content. Images larger than this are\n// returned as text references instead of base64 image content blocks.\n// Aligned with the Anthropic vision API per-image limit.\nexport const MAX_ATTACHMENT_BYTES = 5 * 1024 * 1024;\n\n// Maximum number of images embedded as base64 in a single tool call.\n// Remaining images are returned as text references.\nexport const MAX_EMBEDDED_IMAGE_COUNT = 10;\n\n// Hard cap on comment pages fetched when collecting ticket attachments.\n// Overridable via ZENDESK_MAX_COMMENT_PAGES for tickets with many comments.\nexport const MAX_COMMENT_PAGES = Number(process.env['ZENDESK_MAX_COMMENT_PAGES'] ?? 10);\n\n// Thresholds used to nudge callers toward section-scoped article tools\n// (get_article_outline / get_article_section / update_article_section)\n// instead of fetching/rewriting the full body.\nexport const LARGE_ARTICLE_BODY_CHARS = 3_000;\nexport const LARGE_ARTICLE_SECTION_COUNT = 4;\n\nexport const getBaseUrl = (subdomain: string): string => `https://${subdomain}.zendesk.com/api/v2`;\n\nexport const getHelpCenterBaseUrl = (subdomain: string): string =>\n `https://${subdomain}.zendesk.com/api/v2/help_center`;\n\nexport const getOAuthUrls = (subdomain: string) => ({\n authorizeUrl: `https://${subdomain}.zendesk.com/oauth/authorizations/new`,\n tokenUrl: `https://${subdomain}.zendesk.com/oauth/tokens`,\n});\n","import { createHash, randomBytes } from 'node:crypto';\nimport { readFileSync } from 'node:fs';\nimport { createServer, type Server } from 'node:http';\nimport { release } from 'node:os';\nimport open from 'open';\nimport { getOAuthUrls } from '../constants';\nimport { type Logger, silentLogger } from '../utils/logger';\n\nconst DEFAULT_CALLBACK_PORT = 3000;\nconst AUTH_TIMEOUT_MS = 5 * 60 * 1000;\n\n/** Best-effort WSL detection: WSL kernels carry \"microsoft\" in /proc/version. */\nconst detectWsl = (): boolean => {\n if (process.platform !== 'linux') return false;\n try {\n return readFileSync('/proc/version', 'utf8').toLowerCase().includes('microsoft');\n } catch {\n return false;\n }\n};\n\ninterface BrowserOAuthConfig {\n subdomain: string;\n oauthClientId: string;\n callbackPort?: number | undefined;\n}\n\ninterface TokenResult {\n access_token: string;\n refresh_token?: string;\n token_type: string;\n scope: string;\n}\n\n/**\n * Escape a string for safe interpolation into HTML text/attribute context.\n * The local callback server echoes attacker-controllable values (the OAuth\n * `error_description` query param, token-exchange error bodies) back into the\n * browser response; without escaping these are a reflected-XSS sink.\n */\nconst escapeHtml = (value: string): string =>\n value\n .replace(/&/g, '&')\n .replace(/</g, '<')\n .replace(/>/g, '>')\n .replace(/\"/g, '"')\n .replace(/'/g, ''');\n\n/**\n * A started OAuth flow: the local callback server is already listening and the\n * browser-open attempt has been made. `authorizeUrl` is available immediately\n * (so callers can surface it to the user without blocking), while `tokenPromise`\n * resolves later, when the user completes the browser flow — or rejects on\n * error/timeout.\n */\nexport interface StartedBrowserAuth {\n authorizeUrl: string;\n tokenPromise: Promise<TokenResult>;\n}\n\nconst generateCodeVerifier = (): string => randomBytes(32).toString('base64url');\n\nconst generateCodeChallenge = (verifier: string): string =>\n createHash('sha256').update(verifier).digest('base64url');\n\n/**\n * Begin the OAuth 2.1 PKCE flow: start the local callback server, attempt to\n * open the browser, and return as soon as the server is listening with the\n * authorize URL plus a promise that settles when the callback arrives.\n *\n * Splitting \"start\" from \"await the token\" lets callers stay non-blocking: they\n * can hand the URL back to the user immediately instead of holding a request\n * open for up to the 5-minute timeout.\n */\nexport const startBrowserAuth = (\n config: BrowserOAuthConfig,\n logger: Logger = silentLogger,\n): Promise<StartedBrowserAuth> => {\n const { subdomain, oauthClientId } = config;\n const { authorizeUrl: authorizeBase, tokenUrl } = getOAuthUrls(subdomain);\n const codeVerifier = generateCodeVerifier();\n const codeChallenge = generateCodeChallenge(codeVerifier);\n\n return new Promise<StartedBrowserAuth>((resolveStarted, rejectStarted) => {\n let resolveToken!: (token: TokenResult) => void;\n let rejectToken!: (err: unknown) => void;\n const tokenPromise = new Promise<TokenResult>((resolve, reject) => {\n resolveToken = resolve;\n rejectToken = reject;\n });\n\n let authTimeout: ReturnType<typeof setTimeout> | undefined;\n let callbackServer: Server;\n\n callbackServer = createServer(async (req, res) => {\n const url = new URL(req.url ?? '/', `http://localhost`);\n\n if (url.pathname !== '/callback') {\n res.writeHead(404);\n res.end('Not found');\n return;\n }\n\n const code = url.searchParams.get('code');\n const error = url.searchParams.get('error');\n\n logger.debug('oauth_callback_received', {\n hasCode: Boolean(code),\n hasError: Boolean(error),\n });\n\n if (error) {\n const desc = url.searchParams.get('error_description') ?? error;\n res.writeHead(400, { 'Content-Type': 'text/html' });\n res.end(\n `<html><body><h1>Authentication failed</h1><p>${escapeHtml(desc)}</p></body></html>`,\n );\n clearTimeout(authTimeout);\n callbackServer.close();\n rejectToken(new Error(`OAuth error: ${desc}`));\n return;\n }\n\n if (!code) {\n res.writeHead(400, { 'Content-Type': 'text/html' });\n res.end('<html><body><h1>Missing authorization code</h1></body></html>');\n clearTimeout(authTimeout);\n callbackServer.close();\n rejectToken(new Error('Missing authorization code in callback'));\n return;\n }\n\n // Exchange code for token\n try {\n const callbackPort = (callbackServer.address() as { port: number }).port;\n const tokenBody = new URLSearchParams({\n grant_type: 'authorization_code',\n code,\n client_id: oauthClientId,\n redirect_uri: `http://localhost:${callbackPort}/callback`,\n code_verifier: codeVerifier,\n });\n\n const tokenResponse = await fetch(tokenUrl, {\n method: 'POST',\n headers: { 'Content-Type': 'application/x-www-form-urlencoded' },\n body: tokenBody.toString(),\n });\n\n logger.debug('oauth_token_exchange', { status: tokenResponse.status });\n\n if (!tokenResponse.ok) {\n const errorBody = await tokenResponse.text();\n throw new Error(`Token exchange failed (${tokenResponse.status}): ${errorBody}`);\n }\n\n const tokenData = (await tokenResponse.json()) as TokenResult;\n logger.info('oauth_authenticated');\n\n res.writeHead(200, { 'Content-Type': 'text/html' });\n res.end(\n '<html><body>' +\n '<h1>Authentication successful!</h1>' +\n '<p>You can close this tab and return to Claude Code.</p>' +\n '<p>This tab will auto-close in <span id=\"t\">10</span>s.</p>' +\n '<script>' +\n 'let n=10;' +\n 'const el=document.getElementById(\"t\");' +\n 'const i=setInterval(()=>{n--;el.textContent=n;if(n<=0){clearInterval(i);window.close();}},1000);' +\n '</script>' +\n '</body></html>',\n );\n\n clearTimeout(authTimeout);\n callbackServer.close();\n resolveToken(tokenData);\n } catch (err) {\n res.writeHead(500, { 'Content-Type': 'text/html' });\n res.end(\n `<html><body><h1>Token exchange failed</h1><p>${escapeHtml(err instanceof Error ? err.message : String(err))}</p></body></html>`,\n );\n clearTimeout(authTimeout);\n callbackServer.close();\n rejectToken(err);\n }\n });\n\n // Listen failure (e.g. port already in use) before we ever get a URL: the\n // whole start fails so the caller can surface/retry.\n const onStartError = (err: Error) => {\n clearTimeout(authTimeout);\n rejectStarted(err);\n };\n callbackServer.once('error', onStartError);\n\n // Start on fixed port (must match redirect_uri registered in Zendesk OAuth client)\n callbackServer.listen(config.callbackPort ?? DEFAULT_CALLBACK_PORT, () => {\n // Now that we're listening, a later server error must settle the *token*\n // flow (the started promise is already resolved) and tear the server down,\n // so the token store doesn't wedge waiting on a promise that never settles.\n callbackServer.off('error', onStartError);\n callbackServer.once('error', (err) => {\n clearTimeout(authTimeout);\n callbackServer.close();\n rejectToken(err);\n });\n\n const port = (callbackServer.address() as { port: number }).port;\n const redirectUri = `http://localhost:${port}/callback`;\n\n const params = new URLSearchParams({\n response_type: 'code',\n client_id: oauthClientId,\n redirect_uri: redirectUri,\n scope: 'read write',\n code_challenge: codeChallenge,\n code_challenge_method: 'S256',\n });\n\n const authUrl = `${authorizeBase}?${params.toString()}`;\n logger.debug('oauth_callback_listening', { port, redirectUri });\n logger.info('oauth_browser_opening');\n // Full authorize URL is debug-only: it carries the (public) client_id and\n // PKCE challenge — no secret — but stays out of default-level logs.\n logger.debug('oauth_authorize_url', { url: authUrl });\n // Always-on, ungated user-facing fallback: if the browser can't open, the\n // user must see this URL regardless of LOG_LEVEL — do NOT route it through\n // the (level-gated) logger.\n console.error(`Opening browser for Zendesk authentication...`);\n console.error(`If the browser doesn't open, visit: ${authUrl}`);\n\n open(authUrl)\n .then(() => {\n logger.debug('oauth_browser_opened');\n })\n .catch((err: unknown) => {\n // Do NOT swallow: this is the #60 signal. Capture why `open` failed\n // plus environment markers (presence only, never values).\n logger.error('oauth_browser_open_failed', {\n error: err instanceof Error ? err.message : String(err),\n errorCode: (err as NodeJS.ErrnoException | undefined)?.code,\n platform: process.platform,\n release: release(),\n isWsl: detectWsl(),\n hasSystemRoot: Boolean(process.env['SYSTEMROOT']),\n hasWindir: Boolean(process.env['WINDIR']),\n hasComSpec: Boolean(process.env['ComSpec']),\n hasPath: Boolean(process.env['PATH']),\n hasDisplay: Boolean(process.env['DISPLAY']),\n });\n });\n\n // Timeout after 5 minutes. Cleared on every completion path above so a\n // successful auth can't emit a spurious `oauth_timeout` error later.\n authTimeout = setTimeout(() => {\n logger.error('oauth_timeout', { timeoutMs: AUTH_TIMEOUT_MS });\n callbackServer.close();\n rejectToken(new Error('OAuth authentication timed out (5 min). Please try again.'));\n }, AUTH_TIMEOUT_MS);\n authTimeout.unref();\n\n resolveStarted({ authorizeUrl: authUrl, tokenPromise });\n });\n });\n};\n\n/**\n * Convenience wrapper that performs the full PKCE flow and resolves with the\n * token once the browser flow completes (blocking until then). Retained for\n * callers/tests that want the original \"await the token\" semantics.\n */\nexport const authenticateViaBrowser = async (\n config: BrowserOAuthConfig,\n logger: Logger = silentLogger,\n): Promise<TokenResult> => {\n const { tokenPromise } = await startBrowserAuth(config, logger);\n return tokenPromise;\n};\n","import { type Logger, silentLogger } from '../utils/logger';\nimport { startBrowserAuth } from './browser-oauth';\n\ninterface StoredToken {\n accessToken: string;\n refreshToken?: string | undefined;\n}\n\n/**\n * Signals that interactive sign-in is required. The message is user-facing: MCP\n * surfaces it as the tool-call error text, so it carries the authorize URL and\n * tells the user to authenticate and retry. Kept as an Error factory (not a\n * class) to match the repo's functional style.\n */\nexport type AuthRequiredError = Error & { readonly authorizeUrl: string };\n\nexport const createAuthRequiredError = (authorizeUrl: string): AuthRequiredError =>\n Object.assign(\n new Error(\n 'Zendesk authentication required. A browser window should have opened for you to sign in. ' +\n 'If it did not, open this URL in your browser, then retry your request:\\n' +\n authorizeUrl,\n ),\n { name: 'AuthRequiredError', authorizeUrl } as const,\n );\n\nexport const isAuthRequiredError = (err: unknown): err is AuthRequiredError =>\n err instanceof Error &&\n err.name === 'AuthRequiredError' &&\n typeof (err as AuthRequiredError).authorizeUrl === 'string';\n\nexport const createTokenStore = (\n config: { subdomain: string; oauthClientId: string },\n logger: Logger = silentLogger,\n) => {\n let token: StoredToken | undefined;\n // The authorize URL of the in-flight flow (set once the callback server is\n // listening); `undefined` means no flow is currently pending.\n let authorizeUrl: string | undefined;\n // Resolves to the authorize URL while a flow is being started; guards against\n // launching multiple browser flows for concurrent first calls.\n let starting: Promise<string> | undefined;\n\n const setToken = (accessToken: string, refreshToken?: string | undefined) => {\n token = { accessToken, refreshToken };\n };\n\n const beginAuth = (): Promise<string> => {\n logger.info('oauth_auth_start');\n return startBrowserAuth(\n { subdomain: config.subdomain, oauthClientId: config.oauthClientId },\n logger,\n )\n .then((started) => {\n authorizeUrl = started.authorizeUrl;\n started.tokenPromise\n .then((result) => {\n token = { accessToken: result.access_token, refreshToken: result.refresh_token };\n logger.info('oauth_token_cached');\n })\n .catch((err) => {\n logger.warn('oauth_auth_failed', {\n error: err instanceof Error ? err.message : String(err),\n });\n })\n .finally(() => {\n // Let the next call start a fresh flow: on success the cached token\n // short-circuits anyway; on failure/timeout we want a clean retry.\n starting = undefined;\n authorizeUrl = undefined;\n });\n return started.authorizeUrl;\n })\n .catch((err) => {\n // The callback server couldn't even start listening (e.g. port in use).\n // Reset so a later call can retry, and surface the underlying error.\n starting = undefined;\n throw err;\n });\n };\n\n const getToken = async (): Promise<string> => {\n if (token) {\n logger.debug('oauth_token_cache_hit');\n return token.accessToken;\n }\n\n if (!starting) {\n starting = beginAuth();\n }\n\n // Fail fast: don't hold the tool call open for the whole browser flow.\n // Surface the authorize URL so the user can sign in, then retry — the\n // callback server keeps running in the background and caches the token,\n // so the next call succeeds.\n const url = authorizeUrl ?? (await starting);\n throw createAuthRequiredError(url);\n };\n\n return { getToken, setToken };\n};\n","import * as z from 'zod/v4';\n\nexport const ToolMode = z.enum(['single', 'namespace', 'all']);\nexport type ToolMode = z.infer<typeof ToolMode>;\n\nexport const LogLevel = z.enum(['debug', 'info', 'warn', 'error']);\nexport type LogLevel = z.infer<typeof LogLevel>;\n\nexport const Namespace = z.enum(['tickets', 'help_center', 'users']);\nexport type Namespace = z.infer<typeof Namespace>;\n\nexport const ConfigSchema = z.object({\n subdomain: z.string().min(1, 'ZENDESK_SUBDOMAIN is required'),\n oauthClientId: z.string().min(1),\n zendeskEmail: z.string().optional(),\n zendeskApiToken: z.string().optional(),\n logLevel: LogLevel,\n mode: ToolMode,\n readOnly: z.boolean(),\n namespaces: z.array(Namespace).optional(),\n tools: z.array(z.string()).optional(),\n});\n\nexport type Config = z.infer<typeof ConfigSchema>;\n\ninterface CliResult {\n subdomain?: string;\n mode?: string;\n readOnly?: boolean;\n namespaces?: string[];\n tools?: string[];\n logLevel?: string;\n}\n\nconst parseCliArgs = (args: string[]): CliResult => {\n const result: CliResult = {};\n let positionalIndex = 0;\n\n for (let i = 0; i < args.length; i++) {\n const arg = args[i];\n if (arg === undefined) continue;\n const next = args[i + 1];\n\n if (arg === '--mode' && next) {\n result.mode = next;\n i++;\n } else if (arg === '--read-only') {\n result.readOnly = true;\n } else if (arg === '--namespace' && next) {\n result.namespaces = result.namespaces ?? [];\n result.namespaces.push(next);\n i++;\n } else if (arg === '--tool' && next) {\n result.tools = result.tools ?? [];\n result.tools.push(next);\n i++;\n } else if (arg === '--log-level' && next) {\n result.logLevel = next;\n i++;\n } else if (!arg.startsWith('-') && positionalIndex === 0) {\n result.subdomain = arg;\n positionalIndex++;\n }\n }\n\n return result;\n};\n\nexport const loadConfig = (argv: string[] = process.argv.slice(2)): Config => {\n const cli = parseCliArgs(argv);\n\n const subdomain = cli.subdomain ?? process.env['ZENDESK_SUBDOMAIN'] ?? '';\n const oauthClientId =\n process.env['ZENDESK_OAUTH_CLIENT_ID'] ?? (subdomain ? `${subdomain}_zendesk` : '');\n\n const mode = cli.tools?.length ? 'all' : (cli.mode ?? 'namespace');\n\n return ConfigSchema.parse({\n subdomain,\n oauthClientId,\n zendeskEmail: process.env['ZENDESK_EMAIL'],\n zendeskApiToken: process.env['ZENDESK_API_TOKEN'],\n logLevel: cli.logLevel ?? process.env['LOG_LEVEL'] ?? 'info',\n mode,\n readOnly: cli.readOnly ?? false,\n namespaces: cli.namespaces,\n tools: cli.tools,\n });\n};\n","import type { Namespace } from '../config';\nimport type { ToolDefinition } from '../tools/definitions';\n\nexport interface FilterOptions {\n readOnly: boolean;\n namespaces?: Namespace[] | undefined;\n tools?: string[] | undefined;\n}\n\nexport const filterTools = (allTools: ToolDefinition[], options: FilterOptions): ToolDefinition[] =>\n allTools.filter((tool) => {\n if (options.readOnly && !tool.readOnly) return false;\n if (options.namespaces?.length && !options.namespaces.includes(tool.namespace)) return false;\n if (options.tools?.length && !options.tools.includes(tool.name)) return false;\n return true;\n });\n\nexport const groupByNamespace = (tools: ToolDefinition[]): Map<string, ToolDefinition[]> => {\n const grouped = new Map<string, ToolDefinition[]>();\n for (const tool of tools) {\n const existing = grouped.get(tool.namespace) ?? [];\n existing.push(tool);\n grouped.set(tool.namespace, existing);\n }\n return grouped;\n};\n","import { getBaseUrl, getHelpCenterBaseUrl } from '../constants.js';\n\nexport class ZendeskApiError extends Error {\n constructor(\n public readonly status: number,\n public readonly statusText: string,\n public readonly body: string,\n ) {\n super(ZendeskApiError.buildMessage(status, statusText, body));\n this.name = 'ZendeskApiError';\n }\n\n private static buildMessage(status: number, statusText: string, body: string): string {\n switch (status) {\n case 401:\n return 'Authentication failed. Your Zendesk token may be expired or invalid. Re-authenticate to get a new token.';\n case 403:\n return 'Permission denied. Your Zendesk account does not have access to this resource.';\n case 404:\n return `Resource not found. Please verify the ID is correct. (${statusText})`;\n case 422:\n return `Validation error: ${body}`;\n case 429:\n return 'Rate limit exceeded. Please wait before making more requests.';\n default:\n return `Zendesk API error ${status}: ${statusText}. ${body}`;\n }\n }\n}\n\nexport interface ZendeskRequestOptions {\n method?: 'GET' | 'POST' | 'PUT' | 'DELETE';\n body?: unknown;\n params?: Record<string, string>;\n}\n\n// token is either a Bearer OAuth token or a \"Basic xxx\" string (stdio API token mode)\nconst buildAuthHeader = (token: string): string =>\n token.startsWith('Basic ') ? token : `Bearer ${token}`;\n\nconst buildUrl = (base: string, path: string, params?: Record<string, string>): string => {\n const url = new URL(`${base}${path}`);\n if (params) {\n for (const [key, value] of Object.entries(params)) {\n url.searchParams.set(key, value);\n }\n }\n return url.toString();\n};\n\nconst executeRequest = async <T>(\n url: string,\n token: string,\n options: ZendeskRequestOptions = {},\n): Promise<T> => {\n const { method = 'GET', body } = options;\n\n const headers: Record<string, string> = {\n Authorization: buildAuthHeader(token),\n Accept: 'application/json',\n };\n\n if (body) {\n headers['Content-Type'] = 'application/json';\n }\n\n const init: RequestInit = { method, headers };\n if (body) {\n init.body = JSON.stringify(body);\n }\n\n const response = await fetch(url, init);\n\n if (!response.ok) {\n const responseBody = await response.text();\n throw new ZendeskApiError(response.status, response.statusText, responseBody);\n }\n\n if (response.status === 204) {\n return {} as T;\n }\n\n return response.json() as Promise<T>;\n};\n\nexport const zendeskGet = <T>(\n subdomain: string,\n token: string,\n path: string,\n params?: Record<string, string>,\n): Promise<T> => {\n const url = buildUrl(getBaseUrl(subdomain), path, params);\n return executeRequest<T>(url, token);\n};\n\nexport const zendeskPost = <T>(\n subdomain: string,\n token: string,\n path: string,\n body: unknown,\n): Promise<T> => {\n const url = buildUrl(getBaseUrl(subdomain), path);\n return executeRequest<T>(url, token, { method: 'POST', body });\n};\n\nexport const zendeskPut = <T>(\n subdomain: string,\n token: string,\n path: string,\n body: unknown,\n): Promise<T> => {\n const url = buildUrl(getBaseUrl(subdomain), path);\n return executeRequest<T>(url, token, { method: 'PUT', body });\n};\n\nexport const helpCenterGet = <T>(\n subdomain: string,\n token: string,\n path: string,\n params?: Record<string, string>,\n): Promise<T> => {\n const url = buildUrl(getHelpCenterBaseUrl(subdomain), path, params);\n return executeRequest<T>(url, token);\n};\n\nexport const helpCenterPost = <T>(\n subdomain: string,\n token: string,\n path: string,\n body: unknown,\n): Promise<T> => {\n const url = buildUrl(getHelpCenterBaseUrl(subdomain), path);\n return executeRequest<T>(url, token, { method: 'POST', body });\n};\n\nexport const helpCenterPut = <T>(\n subdomain: string,\n token: string,\n path: string,\n body: unknown,\n): Promise<T> => {\n const url = buildUrl(getHelpCenterBaseUrl(subdomain), path);\n return executeRequest<T>(url, token, { method: 'PUT', body });\n};\n\nexport const fetchZendeskBinary = async (\n subdomain: string,\n token: string,\n contentUrl: string,\n): Promise<{ data: Buffer; contentType: string }> => {\n const expectedHost = `${subdomain}.zendesk.com`;\n const headers: Record<string, string> = {};\n if (new URL(contentUrl).hostname === expectedHost) {\n headers['Authorization'] = buildAuthHeader(token);\n }\n const response = await fetch(contentUrl, { headers });\n if (!response.ok) {\n const body = await response.text();\n throw new ZendeskApiError(response.status, response.statusText, body);\n }\n const contentType = response.headers.get('content-type') ?? 'application/octet-stream';\n const arrayBuffer = await response.arrayBuffer();\n return { data: Buffer.from(arrayBuffer), contentType };\n};\n\nexport const helpCenterUpload = async <T>(\n subdomain: string,\n token: string,\n path: string,\n formData: FormData,\n): Promise<T> => {\n const url = buildUrl(getHelpCenterBaseUrl(subdomain), path);\n const response = await fetch(url, {\n method: 'POST',\n headers: { Authorization: buildAuthHeader(token) },\n body: formData,\n });\n\n if (!response.ok) {\n const responseBody = await response.text();\n throw new ZendeskApiError(response.status, response.statusText, responseBody);\n }\n\n return response.json() as Promise<T>;\n};\n","import * as cheerio from 'cheerio';\nimport type { Element } from 'hast';\nimport { toHtml } from 'hast-util-to-html';\nimport type { Handle } from 'hast-util-to-mdast';\nimport rehypeParse from 'rehype-parse';\nimport rehypeRaw from 'rehype-raw';\nimport rehypeRemark from 'rehype-remark';\nimport rehypeStringify from 'rehype-stringify';\nimport remarkGfm from 'remark-gfm';\nimport remarkParse from 'remark-parse';\nimport remarkRehype from 'remark-rehype';\nimport remarkStringify from 'remark-stringify';\nimport { unified } from 'unified';\n\nexport interface Section {\n index: number;\n heading: string;\n headingTag: string;\n level: number;\n html: string;\n wordCount: number;\n}\n\nconst HEADING_LEVELS = new Set(['h1', 'h2', 'h3']);\n\nconst countWords = (text: string): number => {\n const trimmed = text.trim();\n if (!trimmed) return 0;\n return trimmed.split(/\\s+/).length;\n};\n\nconst textOf = (html: string): string => {\n if (!html) return '';\n const $ = cheerio.load(`<div>${html}</div>`, null, false);\n return $('div').first().text();\n};\n\nexport const parseSections = (html: string): Section[] => {\n if (!html?.trim()) return [];\n\n const $ = cheerio.load(html, null, false);\n const children = $.root().contents().toArray();\n\n const introParts: string[] = [];\n const sections: Array<{\n heading: string;\n headingTag: string;\n level: number;\n contentParts: string[];\n }> = [];\n let current: (typeof sections)[number] | null = null;\n\n for (const node of children) {\n const tagName = node.type === 'tag' ? node.name.toLowerCase() : '';\n\n if (HEADING_LEVELS.has(tagName)) {\n const level = Number.parseInt(tagName.slice(1), 10);\n current = {\n heading: $(node).text().trim(),\n headingTag: tagName,\n level,\n contentParts: [],\n };\n sections.push(current);\n continue;\n }\n\n const outer = $.html(node);\n if (current) {\n current.contentParts.push(outer);\n } else {\n introParts.push(outer);\n }\n }\n\n const result: Section[] = [];\n\n if (introParts.length > 0) {\n const introHtml = introParts.join('');\n result.push({\n index: 0,\n heading: 'intro',\n headingTag: '',\n level: 0,\n html: introHtml,\n wordCount: countWords(textOf(introHtml)),\n });\n }\n\n for (const s of sections) {\n const sectionHtml = s.contentParts.join('');\n result.push({\n index: result.length,\n heading: s.heading,\n headingTag: s.headingTag,\n level: s.level,\n html: sectionHtml,\n wordCount: countWords(textOf(sectionHtml)),\n });\n }\n\n return result;\n};\n\nexport const replaceSectionContent = (\n html: string,\n sectionIndex: number,\n newHtml: string,\n): string => {\n const sections = parseSections(html);\n if (sectionIndex < 0 || sectionIndex >= sections.length) {\n throw new Error(\n `Section index ${sectionIndex} out of range (valid: 0-${Math.max(0, sections.length - 1)})`,\n );\n }\n\n return sections\n .map((section, idx) => {\n const content = idx === sectionIndex ? newHtml : section.html;\n if (section.level === 0) return content;\n return `<${section.headingTag}>${section.heading}</${section.headingTag}>${content}`;\n })\n .join('');\n};\n\n// Keep structural HTML that markdown flattens lossily: <pre> with inline <br>\n// collapses to a single line, and <table> cells with multiple <p> break GFM\n// pipe tables. Leaving them as raw HTML is safer for round-trip.\nconst keepAsHtml: Handle = (_state, node) => ({\n type: 'html',\n value: toHtml(node as Element),\n});\n\nconst htmlToMdProcessor = unified()\n .use(rehypeParse, { fragment: true })\n .use(rehypeRemark, { handlers: { table: keepAsHtml, pre: keepAsHtml } })\n .use(remarkGfm)\n .use(remarkStringify, { bullet: '-', emphasis: '_', fences: true });\n\nconst mdToHtmlProcessor = unified()\n .use(remarkParse)\n .use(remarkGfm)\n .use(remarkRehype, { allowDangerousHtml: true })\n .use(rehypeRaw)\n .use(rehypeStringify);\n\nexport const htmlToMarkdown = (html: string): string => {\n if (!html) return '';\n return String(htmlToMdProcessor.processSync(html));\n};\n\nexport const markdownToHtml = (markdown: string): string => {\n if (!markdown) return '';\n return String(mdToHtmlProcessor.processSync(markdown));\n};\n","import { CHARACTER_LIMIT } from '../constants.js';\nimport type {\n PaginationMeta,\n ZendeskArticle,\n ZendeskArticleAttachment,\n ZendeskCategory,\n ZendeskComment,\n ZendeskContentTag,\n ZendeskLabel,\n ZendeskOrganization,\n ZendeskPermissionGroup,\n ZendeskSection,\n ZendeskTicket,\n ZendeskTranslation,\n ZendeskUser,\n ZendeskUserSegment,\n} from '../types.js';\n\nexport const truncateIfNeeded = (text: string): string => {\n if (text.length <= CHARACTER_LIMIT) return text;\n return `${text.slice(0, CHARACTER_LIMIT)}\\n\\n--- Response truncated (${text.length} chars, limit ${CHARACTER_LIMIT}). Use pagination or filters to reduce results. ---`;\n};\n\nconst formatPagination = (meta: PaginationMeta): string => {\n const parts = [`Results: ${meta.count}`];\n if (meta.has_more) {\n parts.push(`More available (cursor: ${meta.after_cursor})`);\n }\n return parts.join(' | ');\n};\n\nexport const formatTicket = (ticket: ZendeskTicket): string =>\n [\n `## Ticket #${ticket.id}: ${ticket.subject}`,\n `- **Status**: ${ticket.status} | **Priority**: ${ticket.priority ?? 'none'} | **Type**: ${ticket.type ?? 'none'}`,\n `- **Requester**: ${ticket.requester_id} | **Assignee**: ${ticket.assignee_id ?? 'unassigned'}`,\n `- **Tags**: ${ticket.tags.length > 0 ? ticket.tags.join(', ') : 'none'}`,\n `- **Created**: ${ticket.created_at} | **Updated**: ${ticket.updated_at}`,\n ticket.description ? `\\n${ticket.description}` : '',\n ]\n .filter(Boolean)\n .join('\\n');\n\nexport const formatComment = (comment: ZendeskComment): string => {\n const lines = [\n `### ${comment.public ? 'Public comment' : 'Internal note'} by ${comment.author_id}`,\n `*${comment.created_at}*`,\n ];\n if (comment.attachments?.length) {\n const summary = comment.attachments.map((a) => `#${a.id} (${a.content_type})`).join(', ');\n lines.push(`Attachments: ${summary}`);\n }\n lines.push('', comment.body);\n return lines.join('\\n');\n};\n\nexport const formatUser = (user: ZendeskUser): string =>\n [\n `## ${user.name} (${user.id})`,\n `- **Email**: ${user.email}`,\n `- **Role**: ${user.role}`,\n user.role_type != null ? `- **Role type**: ${user.role_type}` : '',\n `- **Active**: ${user.active}`,\n user.organization_id ? `- **Organization**: ${user.organization_id}` : '',\n ]\n .filter(Boolean)\n .join('\\n');\n\nexport const formatOrganization = (org: ZendeskOrganization): string =>\n [\n `## ${org.name} (${org.id})`,\n org.details ? `- **Details**: ${org.details}` : '',\n org.domain_names.length > 0 ? `- **Domains**: ${org.domain_names.join(', ')}` : '',\n org.tags.length > 0 ? `- **Tags**: ${org.tags.join(', ')}` : '',\n ]\n .filter(Boolean)\n .join('\\n');\n\nexport const formatArticleSummary = (article: ZendeskArticle): string =>\n [\n `## ${article.title} (${article.id})`,\n `- **Locale**: ${article.locale} | **Source locale**: ${article.source_locale}`,\n `- **Section**: ${article.section_id} | **Draft**: ${article.draft}`,\n typeof article.position === 'number' ? `- **Position**: ${article.position}` : '',\n article.label_names.length > 0 ? `- **Labels**: ${article.label_names.join(', ')}` : '',\n `- **Created**: ${article.created_at} | **Updated**: ${article.updated_at}`,\n ]\n .filter(Boolean)\n .join('\\n');\n\nexport const formatArticle = (article: ZendeskArticle): string =>\n [formatArticleSummary(article), '', article.body].join('\\n');\n\nexport const formatTranslationSummary = (translation: ZendeskTranslation): string =>\n [\n `## Translation: ${translation.locale} (${translation.id})`,\n `- **Title**: ${translation.title}`,\n `- **Draft**: ${translation.draft}`,\n `- **Updated**: ${translation.updated_at}`,\n ].join('\\n');\n\nexport const formatTranslation = (translation: ZendeskTranslation): string =>\n [formatTranslationSummary(translation), '', translation.body].join('\\n');\n\nexport const formatCategory = (category: ZendeskCategory): string =>\n `- **${category.name}** (${category.id}) — ${category.description || 'No description'}`;\n\nexport const formatSection = (section: ZendeskSection): string =>\n `- **${section.name}** (${section.id}) — Category: ${section.category_id} — ${section.description || 'No description'}`;\n\nexport const formatPermissionGroup = (group: ZendeskPermissionGroup): string =>\n `- **${group.name}** (${group.id})${group.built_in ? ' — Built-in' : ''}`;\n\nexport const formatContentTag = (tag: ZendeskContentTag): string => `- **${tag.name}** (${tag.id})`;\n\nexport const formatLabel = (label: ZendeskLabel): string => `- **${label.name}** (${label.id})`;\n\nexport const formatUserSegment = (segment: ZendeskUserSegment): string =>\n `- **${segment.name}** (${segment.id}) — ${segment.user_type}${segment.built_in ? ' — Built-in' : ''}`;\n\nexport const formatAttachment = (attachment: ZendeskArticleAttachment): string =>\n `- **${attachment.file_name}** (${attachment.id}) — ${attachment.content_type} — ${attachment.size} bytes`;\n\nexport const formatList = <T>(\n items: T[],\n formatter: (item: T) => string,\n meta?: PaginationMeta,\n): string => {\n const header = meta ? formatPagination(meta) : '';\n const body = items.map(formatter).join('\\n\\n');\n const text = [header, body].filter(Boolean).join('\\n\\n');\n return truncateIfNeeded(text);\n};\n","import type { PaginationMeta, ZendeskListResponse } from '../types';\n\n// Cursor-based pagination (for list endpoints: /tickets, /organizations, etc.)\nexport const buildCursorParams = (pageSize: number, cursor?: string): Record<string, string> => {\n const params: Record<string, string> = {\n 'page[size]': String(pageSize),\n };\n if (cursor) {\n params['page[after]'] = cursor;\n }\n return params;\n};\n\n// Offset-based pagination (for search endpoints: /search, /help_center/articles/search)\nexport const buildOffsetParams = (perPage: number, page?: number): Record<string, string> => {\n const params: Record<string, string> = {\n per_page: String(perPage),\n };\n if (page && page > 1) {\n params['page'] = String(page);\n }\n return params;\n};\n\nexport const extractPaginationMeta = <T>(response: ZendeskListResponse<T>): PaginationMeta => ({\n has_more: response.meta?.has_more ?? response.next_page != null,\n after_cursor: response.meta?.after_cursor ?? null,\n count: response.count ?? 0,\n});\n\n// For search responses — offset-based, count is always present\nexport const extractSearchPaginationMeta = <T>(\n response: ZendeskListResponse<T>,\n perPage: number,\n page: number,\n): PaginationMeta => {\n const count = response.count ?? 0;\n const has_more = count > page * perPage;\n return {\n has_more,\n after_cursor: has_more ? String(page + 1) : null,\n count,\n };\n};\n","import * as z from 'zod/v4';\nimport {\n helpCenterGet,\n helpCenterPost,\n helpCenterPut,\n helpCenterUpload,\n zendeskGet,\n zendeskPost,\n} from '../client/zendesk-api';\nimport {\n DEFAULT_PAGE_SIZE,\n LARGE_ARTICLE_BODY_CHARS,\n LARGE_ARTICLE_SECTION_COUNT,\n MAX_PAGE_SIZE,\n} from '../constants';\nimport type {\n ZendeskArticle,\n ZendeskArticleAttachment,\n ZendeskCategory,\n ZendeskContentTag,\n ZendeskLabel,\n ZendeskListResponse,\n ZendeskPermissionGroup,\n ZendeskSection,\n ZendeskTranslation,\n ZendeskUserSegment,\n} from '../types';\nimport {\n htmlToMarkdown,\n markdownToHtml,\n parseSections,\n replaceSectionContent,\n} from '../utils/article-sections';\nimport {\n formatArticle,\n formatArticleSummary,\n formatAttachment,\n formatCategory,\n formatContentTag,\n formatLabel,\n formatList,\n formatPermissionGroup,\n formatSection,\n formatTranslation,\n formatTranslationSummary,\n formatUserSegment,\n truncateIfNeeded,\n} from '../utils/formatting';\nimport {\n buildCursorParams,\n buildOffsetParams,\n extractPaginationMeta,\n extractSearchPaginationMeta,\n} from '../utils/pagination';\nimport type { ToolContext, ToolDefinition } from './definitions';\n\nconst largeArticleHint = (body: string, sectionCount: number): string | null => {\n if (body.length < LARGE_ARTICLE_BODY_CHARS && sectionCount < LARGE_ARTICLE_SECTION_COUNT) {\n return null;\n }\n return [\n `> ⚠ Large article (${body.length} chars, ${sectionCount} sections).`,\n '> For targeted edits, prefer get_article_outline + get_article_section +',\n '> update_article_section to avoid re-sending the full body on each write.',\n '',\n ].join('\\n');\n};\n\nexport const createHelpCenterTools = (ctx: ToolContext): ToolDefinition[] => {\n const { subdomain, getToken } = ctx;\n\n return [\n {\n name: 'search_articles',\n namespace: 'help_center',\n readOnly: true,\n title: 'Search Help Center Articles',\n description:\n 'Full-text search across Help Center articles (metadata only, no body). Use get_article for full content. Supports locale filtering. Returns total count.',\n inputSchema: z.object({\n query: z.string().min(1).describe('Search query'),\n locale: z.string().optional().describe('Filter by locale (e.g., \"en-us\", \"fr\")'),\n per_page: z\n .number()\n .int()\n .min(1)\n .max(MAX_PAGE_SIZE)\n .default(DEFAULT_PAGE_SIZE)\n .describe('Results per page'),\n page: z.number().int().min(1).default(1).describe('Page number'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { query, locale, per_page, page } = params as {\n query: string;\n locale?: string;\n per_page: number;\n page: number;\n };\n const token = await getToken();\n const p: Record<string, string> = { query, ...buildOffsetParams(per_page, page) };\n if (locale) p['locale'] = locale;\n const response = await helpCenterGet<ZendeskListResponse<ZendeskArticle>>(\n subdomain,\n token,\n '/articles/search',\n p,\n );\n return {\n content: [\n {\n type: 'text',\n text: formatList(\n response.results ?? [],\n formatArticleSummary,\n extractSearchPaginationMeta(response, per_page, page),\n ),\n },\n ],\n };\n },\n },\n {\n name: 'get_article',\n namespace: 'help_center',\n readOnly: true,\n title: 'Get Help Center Article',\n description:\n 'Retrieve an article by ID with full body content. For large articles, prefer get_article_outline + get_article_section to save tokens. Optionally specify locale for a translated version. Returns body (HTML), metadata, source_locale, and list of available translations.',\n inputSchema: z.object({\n article_id: z.number().int().describe('Article ID'),\n locale: z.string().optional().describe('Locale for translated version'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, locale } = params as { article_id: number; locale?: string };\n const token = await getToken();\n const path = locale ? `/${locale}/articles/${article_id}` : `/articles/${article_id}`;\n const { article } = await helpCenterGet<{ article: ZendeskArticle }>(\n subdomain,\n token,\n path,\n );\n const { translations } = await helpCenterGet<{ translations: ZendeskTranslation[] }>(\n subdomain,\n token,\n `/articles/${article_id}/translations`,\n );\n const hint = largeArticleHint(article.body, parseSections(article.body).length);\n const text =\n (hint ?? '') +\n formatArticle(article) +\n `\\n\\n**Available translations**: ${translations.map((t) => t.locale).join(', ')}`;\n return { content: [{ type: 'text', text: truncateIfNeeded(text) }] };\n },\n },\n {\n name: 'list_categories',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Help Center Categories',\n description: 'List all Help Center categories. Optionally filter by locale.',\n inputSchema: z.object({\n locale: z.string().optional(),\n page_size: z.number().int().min(1).max(MAX_PAGE_SIZE).default(DEFAULT_PAGE_SIZE),\n cursor: z.string().optional(),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { locale, page_size, cursor } = params as {\n locale?: string;\n page_size: number;\n cursor?: string;\n };\n const token = await getToken();\n const path = locale ? `/${locale}/categories` : '/categories';\n const response = await helpCenterGet<ZendeskListResponse<ZendeskCategory>>(\n subdomain,\n token,\n path,\n buildCursorParams(page_size, cursor),\n );\n return {\n content: [\n {\n type: 'text',\n text: formatList(\n response.categories ?? [],\n formatCategory,\n extractPaginationMeta(response),\n ),\n },\n ],\n };\n },\n },\n {\n name: 'list_sections',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Help Center Sections',\n description: 'List sections, optionally filtered by category ID and locale.',\n inputSchema: z.object({\n category_id: z.number().int().optional(),\n locale: z.string().optional(),\n page_size: z.number().int().min(1).max(MAX_PAGE_SIZE).default(DEFAULT_PAGE_SIZE),\n cursor: z.string().optional(),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { category_id, locale, page_size, cursor } = params as {\n category_id?: number;\n locale?: string;\n page_size: number;\n cursor?: string;\n };\n const token = await getToken();\n const path =\n category_id && locale\n ? `/${locale}/categories/${category_id}/sections`\n : category_id\n ? `/categories/${category_id}/sections`\n : locale\n ? `/${locale}/sections`\n : '/sections';\n const response = await helpCenterGet<ZendeskListResponse<ZendeskSection>>(\n subdomain,\n token,\n path,\n buildCursorParams(page_size, cursor),\n );\n return {\n content: [\n {\n type: 'text',\n text: formatList(\n response.sections ?? [],\n formatSection,\n extractPaginationMeta(response),\n ),\n },\n ],\n };\n },\n },\n {\n name: 'list_articles',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Help Center Articles',\n description:\n 'List articles (metadata only, no body). Use get_article for full content. Optionally filter by section ID and locale. Supports sort_by (\"title\", \"created_at\", \"updated_at\") and include_translations: true to show available translation locales per article. Note: include_translations must be re-sent on each paginated request.',\n inputSchema: z.object({\n section_id: z.number().int().optional(),\n locale: z.string().optional(),\n page_size: z.number().int().min(1).max(MAX_PAGE_SIZE).default(DEFAULT_PAGE_SIZE),\n cursor: z.string().optional(),\n sort_by: z\n .enum(['created_at', 'updated_at', 'position', 'title'])\n .default('position')\n .describe('Sort field'),\n sort_order: z.enum(['asc', 'desc']).default('asc').describe('Sort direction'),\n include_translations: z\n .boolean()\n .default(false)\n .describe(\n 'Include available translation locales per article (causes 1 extra API call per article)',\n ),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { section_id, locale, page_size, cursor, sort_by, sort_order, include_translations } =\n params as {\n section_id?: number;\n locale?: string;\n page_size: number;\n cursor?: string;\n sort_by: string;\n sort_order: string;\n include_translations: boolean;\n };\n const token = await getToken();\n const path =\n section_id && locale\n ? `/${locale}/sections/${section_id}/articles`\n : section_id\n ? `/sections/${section_id}/articles`\n : locale\n ? `/${locale}/articles`\n : '/articles';\n const response = await helpCenterGet<ZendeskListResponse<ZendeskArticle>>(\n subdomain,\n token,\n path,\n { ...buildCursorParams(page_size, cursor), sort_by, sort_order },\n );\n const articles = response.articles ?? [];\n if (!include_translations) {\n return {\n content: [\n {\n type: 'text',\n text: formatList(articles, formatArticleSummary, extractPaginationMeta(response)),\n },\n ],\n };\n }\n const formatted = await Promise.all(\n articles.map(async (article) => {\n const { translations } = await helpCenterGet<{ translations: ZendeskTranslation[] }>(\n subdomain,\n token,\n `/articles/${article.id}/translations`,\n );\n const locales = translations.map((t) => t.locale).join(', ');\n return `${formatArticleSummary(article)}\\n- **Translations**: ${locales}`;\n }),\n );\n const meta = extractPaginationMeta(response);\n const header = meta.count\n ? `Results: ${meta.count}${meta.has_more ? ` | More available (cursor: ${meta.after_cursor})` : ''}`\n : '';\n const text = [header, ...formatted].filter(Boolean).join('\\n\\n');\n return { content: [{ type: 'text', text: truncateIfNeeded(text) }] };\n },\n },\n {\n name: 'list_article_translations',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Article Translations',\n description:\n 'List all available translations for an article (metadata only, no body: locale, title, draft, updated_at). Use get_article with locale for full translated content.',\n inputSchema: z.object({ article_id: z.number().int().describe('Article ID') }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id } = params as { article_id: number };\n const token = await getToken();\n const { translations } = await helpCenterGet<{ translations: ZendeskTranslation[] }>(\n subdomain,\n token,\n `/articles/${article_id}/translations`,\n );\n return {\n content: [{ type: 'text', text: formatList(translations, formatTranslationSummary) }],\n };\n },\n },\n {\n name: 'create_article_translation',\n namespace: 'help_center',\n readOnly: false,\n title: 'Create Article Translation',\n description: 'Create a translation for an existing article in a specific locale.',\n inputSchema: z.object({\n article_id: z.number().int(),\n locale: z.string().describe('Target locale (e.g., \"fr\", \"de\")'),\n title: z.string().min(1),\n body: z.string().min(1).describe('Translated body (HTML)'),\n draft: z.boolean().default(false),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: false,\n idempotentHint: false,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, locale, title, body, draft } = params as {\n article_id: number;\n locale: string;\n title: string;\n body: string;\n draft: boolean;\n };\n const token = await getToken();\n const { translation } = await helpCenterPost<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations`,\n { translation: { locale, title, body, draft } },\n );\n return {\n content: [\n {\n type: 'text',\n text: `Translation created for article #${article_id} in \"${locale}\".\\n\\n${formatTranslation(translation)}`,\n },\n ],\n };\n },\n },\n {\n name: 'update_article_translation',\n namespace: 'help_center',\n readOnly: false,\n title: 'Update Article Translation',\n description:\n \"Update article content (title, body) in a specific locale. For targeted edits on one or a few sections, prefer update_article_section — this tool replaces the FULL body and re-sends the entire article on each write. Use the article's source_locale (from get_article) for the default language, or another locale for translations.\",\n inputSchema: z.object({\n article_id: z.number().int(),\n locale: z.string(),\n title: z.string().optional(),\n body: z.string().optional(),\n draft: z.boolean().optional(),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: true,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, locale, ...updates } = params as {\n article_id: number;\n locale: string;\n } & Record<string, unknown>;\n const token = await getToken();\n const { translation } = await helpCenterPut<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations/${locale}`,\n { translation: updates },\n );\n return {\n content: [\n {\n type: 'text',\n text: `Translation updated for article #${article_id} in \"${locale}\".\\n\\n${formatTranslation(translation)}`,\n },\n ],\n };\n },\n },\n {\n name: 'list_permission_groups',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Permission Groups',\n description:\n 'List all Guide permission groups. Use this to find the permission_group_id required when creating articles.',\n inputSchema: z.object({}),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async () => {\n const token = await getToken();\n const response = await zendeskGet<{\n permission_groups: ZendeskPermissionGroup[];\n count: number;\n }>(subdomain, token, '/guide/permission_groups');\n return {\n content: [\n {\n type: 'text',\n text: formatList(response.permission_groups ?? [], formatPermissionGroup),\n },\n ],\n };\n },\n },\n {\n name: 'create_article',\n namespace: 'help_center',\n readOnly: false,\n title: 'Create Help Center Article',\n description:\n \"Create a new article in a section. The locale becomes the article's source_locale. Requires a permission_group_id (use list_permission_groups to find available IDs). To add content in other locales afterwards, use create_article_translation.\",\n inputSchema: z.object({\n section_id: z.number().int(),\n title: z.string().min(1),\n body: z.string().min(1).describe('Article body (HTML)'),\n permission_group_id: z\n .number()\n .int()\n .describe('Permission group ID (use list_permission_groups to find it)'),\n user_segment_id: z\n .number()\n .int()\n .optional()\n .describe(\n 'User segment ID for visibility (use list_user_segments to find it). Defaults to everyone.',\n ),\n author_id: z\n .number()\n .int()\n .optional()\n .describe('Author user ID. Defaults to the authenticated user.'),\n content_tag_ids: z\n .array(z.string())\n .optional()\n .describe('Content tag IDs (use list_content_tags to find them)'),\n locale: z.string().optional(),\n draft: z.boolean().default(true),\n promoted: z.boolean().default(false),\n label_names: z\n .array(z.string())\n .optional()\n .describe('Label names for search ranking (use list_labels to see existing labels)'),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: false,\n idempotentHint: false,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { section_id, ...articleData } = params as { section_id: number } & Record<\n string,\n unknown\n >;\n const token = await getToken();\n const { article } = await helpCenterPost<{ article: ZendeskArticle }>(\n subdomain,\n token,\n `/sections/${section_id}/articles`,\n { article: articleData },\n );\n return {\n content: [\n { type: 'text', text: `Article #${article.id} created.\\n\\n${formatArticle(article)}` },\n ],\n };\n },\n },\n {\n name: 'update_article',\n namespace: 'help_center',\n readOnly: false,\n title: 'Update Help Center Article',\n description:\n 'Update article metadata only (draft, promoted, labels, tags, visibility, section, sort position, etc.). Does NOT update content (title, body) — use update_article_translation for that.',\n inputSchema: z.object({\n article_id: z.number().int(),\n draft: z.boolean().optional(),\n promoted: z.boolean().optional(),\n label_names: z.array(z.string()).optional().describe('Label names for search ranking'),\n content_tag_ids: z.array(z.string()).optional().describe('Content tag IDs'),\n user_segment_id: z.number().int().optional().describe('User segment ID for visibility'),\n author_id: z.number().int().optional().describe('Author user ID'),\n permission_group_id: z.number().int().optional().describe('Permission group ID'),\n section_id: z.number().int().optional(),\n position: z\n .number()\n .int()\n .min(0)\n .optional()\n .describe(\n 'Sort position within the section (manual ordering only; 0 = first/top). New articles default to position 0. To move an article to the END of its section, set this to one more than the highest current position: read the highest position P from list_articles with sort_by=\"position\", sort_order=\"desc\", then set position = P + 1.',\n ),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: true,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, ...updates } = params as { article_id: number } & Record<\n string,\n unknown\n >;\n const token = await getToken();\n const { article } = await helpCenterPut<{ article: ZendeskArticle }>(\n subdomain,\n token,\n `/articles/${article_id}`,\n { article: updates },\n );\n return {\n content: [\n { type: 'text', text: `Article #${article.id} updated.\\n\\n${formatArticle(article)}` },\n ],\n };\n },\n },\n {\n name: 'list_content_tags',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Content Tags',\n description:\n 'List all Guide content tags. Content tags are visible to end users and help them find related articles.',\n inputSchema: z.object({}),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async () => {\n const token = await getToken();\n const response = await zendeskGet<{ records: ZendeskContentTag[]; count: number }>(\n subdomain,\n token,\n '/guide/content_tags',\n );\n return {\n content: [{ type: 'text', text: formatList(response.records ?? [], formatContentTag) }],\n };\n },\n },\n {\n name: 'create_content_tag',\n namespace: 'help_center',\n readOnly: false,\n title: 'Create Content Tag',\n description: 'Create a new content tag for Guide articles.',\n inputSchema: z.object({\n name: z.string().min(1).describe('Content tag name'),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: false,\n idempotentHint: false,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { name } = params as { name: string };\n const token = await getToken();\n const { record } = await zendeskPost<{ record: ZendeskContentTag }>(\n subdomain,\n token,\n '/guide/content_tags',\n { record: { name } },\n );\n return {\n content: [{ type: 'text', text: `Content tag created.\\n\\n${formatContentTag(record)}` }],\n };\n },\n },\n {\n name: 'list_labels',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Article Labels',\n description:\n 'List all article labels. Labels improve Help Center search ranking and are not visible to end users.',\n inputSchema: z.object({}),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async () => {\n const token = await getToken();\n const response = await helpCenterGet<{ labels: ZendeskLabel[]; count: number }>(\n subdomain,\n token,\n '/articles/labels',\n );\n return {\n content: [{ type: 'text', text: formatList(response.labels ?? [], formatLabel) }],\n };\n },\n },\n {\n name: 'list_user_segments',\n namespace: 'help_center',\n readOnly: true,\n title: 'List User Segments',\n description:\n 'List all user segments. User segments control article visibility (who can view). Use the ID when creating or updating articles.',\n inputSchema: z.object({}),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async () => {\n const token = await getToken();\n const response = await helpCenterGet<{\n user_segments: ZendeskUserSegment[];\n count: number;\n }>(subdomain, token, '/user_segments');\n return {\n content: [\n { type: 'text', text: formatList(response.user_segments ?? [], formatUserSegment) },\n ],\n };\n },\n },\n {\n name: 'list_article_attachments',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Article Attachments',\n description: 'List all attachments for an article.',\n inputSchema: z.object({\n article_id: z.number().int().describe('Article ID'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id } = params as { article_id: number };\n const token = await getToken();\n const response = await helpCenterGet<{\n article_attachments: ZendeskArticleAttachment[];\n count: number;\n }>(subdomain, token, `/articles/${article_id}/attachments`);\n return {\n content: [\n {\n type: 'text',\n text: formatList(response.article_attachments ?? [], formatAttachment),\n },\n ],\n };\n },\n },\n {\n name: 'get_article_outline',\n namespace: 'help_center',\n readOnly: true,\n title: 'Get Article Outline',\n description:\n 'Return a compact outline of an article (list of sections delimited by h1/h2/h3, with word counts) for the given locale (defaults to source_locale). Includes available translations with their outdated status. Use get_article_section to fetch a specific section.',\n inputSchema: z.object({\n article_id: z.number().int().describe('Article ID'),\n locale: z\n .string()\n .optional()\n .describe('Locale of the body to outline (defaults to article source_locale)'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, locale } = params as { article_id: number; locale?: string };\n const token = await getToken();\n const { article } = await helpCenterGet<{ article: ZendeskArticle }>(\n subdomain,\n token,\n `/articles/${article_id}`,\n );\n const effectiveLocale = locale ?? article.source_locale;\n const { translation } = await helpCenterGet<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations/${effectiveLocale}`,\n );\n const { translations } = await helpCenterGet<{\n translations: Array<ZendeskTranslation & { outdated?: boolean }>;\n }>(subdomain, token, `/articles/${article_id}/translations`);\n const sections = parseSections(translation.body);\n\n const outlineLines = sections.length\n ? sections\n .map(\n (s) =>\n `- [${s.index}] ${s.headingTag ? `${s.headingTag}: ` : ''}${s.heading} (${s.wordCount} words)`,\n )\n .join('\\n')\n : '_(no sections detected)_';\n const translationsList = translations\n .map((t) => `- ${t.locale}${t.outdated ? ' (outdated)' : ''}`)\n .join('\\n');\n\n const text = [\n `# Outline — Article #${article_id} (${effectiveLocale})`,\n `**Title**: ${translation.title}`,\n '',\n '## Sections',\n outlineLines,\n '',\n '## Available translations',\n translationsList,\n ].join('\\n');\n return { content: [{ type: 'text', text }] };\n },\n },\n {\n name: 'get_article_section',\n namespace: 'help_center',\n readOnly: true,\n title: 'Get Article Section',\n description:\n 'Retrieve the content of a single section of an article in a given locale. Use get_article_outline first to discover section indexes. Default format=\"html\" for round-trip safety. Pass format=\"markdown\" only for human review — the Markdown representation is lossy on some structures (<pre> with <br>, tables with multi-<p> cells are kept as raw HTML to limit the damage, but do not round-trip markdown content back through update_article_section).',\n inputSchema: z.object({\n article_id: z.number().int().describe('Article ID'),\n locale: z.string().describe('Locale of the body (e.g., \"en-us\", \"fr\")'),\n section_index: z\n .number()\n .int()\n .min(0)\n .describe('0-based index of the section (see get_article_outline)'),\n format: z\n .enum(['html', 'markdown'])\n .default('html')\n .describe(\n 'Output format. \"html\" (default) is round-trip safe. \"markdown\" is lossy on some HTML structures — use only for human review, not before update_article_section.',\n ),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, locale, section_index, format } = params as {\n article_id: number;\n locale: string;\n section_index: number;\n format: 'html' | 'markdown';\n };\n const token = await getToken();\n const { translation } = await helpCenterGet<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations/${locale}`,\n );\n const sections = parseSections(translation.body);\n const section = sections[section_index];\n if (!section) {\n throw new Error(\n `Section index ${section_index} not found. Article has ${sections.length} section(s) (0-${Math.max(0, sections.length - 1)}).`,\n );\n }\n const content = format === 'markdown' ? htmlToMarkdown(section.html) : section.html;\n const headerLine = section.headingTag\n ? `## [${section.index}] ${section.headingTag}: ${section.heading}`\n : `## [${section.index}] ${section.heading}`;\n const text = [\n headerLine,\n `_Locale: ${locale} | Words: ${section.wordCount} | Format: ${format}_`,\n '',\n content,\n ].join('\\n');\n return { content: [{ type: 'text', text: truncateIfNeeded(text) }] };\n },\n },\n {\n name: 'update_article_section',\n namespace: 'help_center',\n readOnly: false,\n title: 'Update Article Section',\n description:\n 'Replace the content of a single section of an article in a given locale, keeping the rest of the body intact. The server fetches the current body, replaces the targeted section, and PUTs the full reconstructed body via the Translations API. Default format=\"html\" for fidelity. Use format=\"markdown\" only when you control the input and know it does not rely on structures that round-trip poorly (code blocks with line breaks, tables with multi-paragraph cells). The section heading is preserved and is NOT part of the replaced content.',\n inputSchema: z.object({\n article_id: z.number().int().describe('Article ID'),\n locale: z.string().describe('Locale of the translation to update'),\n section_index: z\n .number()\n .int()\n .min(0)\n .describe('0-based index of the section to replace (see get_article_outline)'),\n content: z\n .string()\n .describe(\n 'New content for the section (heading excluded). HTML by default, Markdown if format=\"markdown\".',\n ),\n format: z\n .enum(['html', 'markdown'])\n .default('html')\n .describe(\n 'Input format. \"html\" (default) is the safe path. \"markdown\" is converted to HTML server-side but may introduce artifacts on complex content.',\n ),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: true,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, locale, section_index, content, format } = params as {\n article_id: number;\n locale: string;\n section_index: number;\n content: string;\n format: 'html' | 'markdown';\n };\n const token = await getToken();\n const { translation } = await helpCenterGet<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations/${locale}`,\n );\n const newSectionHtml = format === 'markdown' ? markdownToHtml(content) : content;\n const newBody = replaceSectionContent(translation.body, section_index, newSectionHtml);\n const { translation: updated } = await helpCenterPut<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations/${locale}`,\n { translation: { body: newBody } },\n );\n const updatedSections = parseSections(updated.body);\n const updatedSection = updatedSections[section_index];\n const newWordCount = updatedSection?.wordCount ?? 0;\n const headingLabel = updatedSection?.heading ?? '(intro)';\n const text = [\n `Section [${section_index}] \"${headingLabel}\" updated for article #${article_id} (${locale}).`,\n `New word count: ${newWordCount}.`,\n ].join('\\n');\n return { content: [{ type: 'text', text }] };\n },\n },\n {\n name: 'compare_translations',\n namespace: 'help_center',\n readOnly: true,\n title: 'Compare Article Translations',\n description:\n 'Compare section structure between two locales of the same article, matched by index. Returns a compact table (one row per section) with status: \"ok\" (both present, source/target word count ratio within 25%), \"different\" (word count ratio diverges by more than 25% — size signal only, NOT a semantic divergence: two locales may legitimately differ in verbosity) or \"missing\" (section absent in target). Useful to spot structurally stale or missing sections; do not interpret \"different\" as an edit regression on its own.',\n inputSchema: z.object({\n article_id: z.number().int().describe('Article ID'),\n source_locale: z.string().describe('Source (reference) locale'),\n target_locale: z.string().describe('Target locale to compare against source'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, source_locale, target_locale } = params as {\n article_id: number;\n source_locale: string;\n target_locale: string;\n };\n const token = await getToken();\n const [sourceRes, targetRes] = await Promise.all([\n helpCenterGet<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations/${source_locale}`,\n ),\n helpCenterGet<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations/${target_locale}`,\n ),\n ]);\n const sourceSections = parseSections(sourceRes.translation.body);\n const targetSections = parseSections(targetRes.translation.body);\n const maxLen = Math.max(sourceSections.length, targetSections.length);\n\n const rows: string[] = [];\n rows.push(`| Idx | Heading | Status | Source words | Target words |`);\n rows.push(`| --- | --- | --- | --- | --- |`);\n for (let i = 0; i < maxLen; i += 1) {\n const src = sourceSections[i];\n const tgt = targetSections[i];\n const heading = src?.heading ?? tgt?.heading ?? '';\n const sourceWords = src?.wordCount ?? 0;\n const targetWords = tgt?.wordCount ?? 0;\n let status: 'ok' | 'missing' | 'different';\n if (!tgt) status = 'missing';\n else if (!src) status = 'different';\n else {\n const denom = Math.max(sourceWords, 1);\n const diffRatio = Math.abs(sourceWords - targetWords) / denom;\n status = diffRatio > 0.25 ? 'different' : 'ok';\n }\n rows.push(`| ${i} | ${heading} | ${status} | ${sourceWords} | ${targetWords} |`);\n }\n\n const text = [\n `# Translation diff — Article #${article_id} (${source_locale} → ${target_locale})`,\n '',\n ...rows,\n ].join('\\n');\n return { content: [{ type: 'text', text }] };\n },\n },\n {\n name: 'create_article_attachment',\n namespace: 'help_center',\n readOnly: false,\n title: 'Create Article Attachment',\n description:\n 'Upload an attachment to an article. Provide file content as base64-encoded string.',\n inputSchema: z.object({\n article_id: z.number().int().describe('Article ID'),\n file_name: z.string().min(1).describe('File name (e.g., \"screenshot.png\")'),\n file_base64: z.string().min(1).describe('File content encoded as base64'),\n content_type: z\n .string()\n .default('application/octet-stream')\n .describe('MIME type (e.g., \"image/png\", \"application/pdf\")'),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: false,\n idempotentHint: false,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, file_name, file_base64, content_type } = params as {\n article_id: number;\n file_name: string;\n file_base64: string;\n content_type: string;\n };\n const token = await getToken();\n const buffer = Buffer.from(file_base64, 'base64');\n const blob = new Blob([buffer], { type: content_type });\n const formData = new FormData();\n formData.append('file', blob, file_name);\n const { article_attachment } = await helpCenterUpload<{\n article_attachment: ZendeskArticleAttachment;\n }>(subdomain, token, `/articles/${article_id}/attachments`, formData);\n return {\n content: [\n {\n type: 'text',\n text: `Attachment created for article #${article_id}.\\n\\n${formatAttachment(article_attachment)}`,\n },\n ],\n };\n },\n },\n ];\n};\n","import * as z from 'zod/v4';\nimport { zendeskGet } from '../client/zendesk-api';\nimport { DEFAULT_PAGE_SIZE, MAX_PAGE_SIZE } from '../constants';\nimport type { ZendeskListResponse } from '../types';\nimport { truncateIfNeeded } from '../utils/formatting';\nimport { buildOffsetParams, extractSearchPaginationMeta } from '../utils/pagination';\nimport type { ToolContext, ToolDefinition } from './definitions';\n\nconst formatSearchResult = (result: Record<string, unknown>): string => {\n const lines: string[] = [`## [${result['result_type']}] #${result['id']}`];\n if (result['subject']) lines.push(`**Subject**: ${result['subject']}`);\n if (result['name']) lines.push(`**Name**: ${result['name']}`);\n if (result['title']) lines.push(`**Title**: ${result['title']}`);\n if (result['email']) lines.push(`**Email**: ${result['email']}`);\n if (result['status']) lines.push(`**Status**: ${result['status']}`);\n if (result['description']) {\n const desc = String(result['description']);\n lines.push(desc.length > 200 ? `${desc.slice(0, 200)}...` : desc);\n }\n return lines.join('\\n');\n};\n\nexport const createSearchTools = (ctx: ToolContext): ToolDefinition[] => {\n const { subdomain, getToken } = ctx;\n\n return [\n {\n name: 'search',\n namespace: 'tickets',\n readOnly: true,\n title: 'Zendesk Unified Search',\n description:\n 'Search across tickets, users, and organizations. Supports filters like \"type:ticket status:open\", \"type:user role:agent\". Returns total count and paginated results (100 per page). Organization results include name and ID only — use get_organization for full details (tags, domains, details).',\n inputSchema: z.object({\n query: z.string().min(1).describe('Zendesk search query'),\n per_page: z\n .number()\n .int()\n .min(1)\n .max(MAX_PAGE_SIZE)\n .default(DEFAULT_PAGE_SIZE)\n .describe('Results per page (max 100)'),\n page: z.number().int().min(1).default(1).describe('Page number (1-based)'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { query, per_page, page } = params as {\n query: string;\n per_page: number;\n page: number;\n };\n const token = await getToken();\n const response = await zendeskGet<ZendeskListResponse<Record<string, unknown>>>(\n subdomain,\n token,\n '/search',\n {\n query,\n ...buildOffsetParams(per_page, page),\n },\n );\n const results = response.results ?? [];\n const meta = extractSearchPaginationMeta(response, per_page, page);\n const header = `Total: ${meta.count} | Page ${page} (${results.length} results)${meta.has_more ? ` | Next page: ${meta.after_cursor}` : ''}`;\n const body = results.map(formatSearchResult).join('\\n\\n');\n return {\n content: [\n { type: 'text', text: truncateIfNeeded([header, body].filter(Boolean).join('\\n\\n')) },\n ],\n };\n },\n },\n ];\n};\n","import * as z from 'zod/v4';\nimport {\n fetchZendeskBinary,\n ZendeskApiError,\n zendeskGet,\n zendeskPost,\n zendeskPut,\n} from '../client/zendesk-api';\nimport {\n DEFAULT_PAGE_SIZE,\n MAX_ATTACHMENT_BYTES,\n MAX_COMMENT_PAGES,\n MAX_EMBEDDED_IMAGE_COUNT,\n MAX_PAGE_SIZE,\n} from '../constants';\nimport type {\n ZendeskComment,\n ZendeskListResponse,\n ZendeskTicket,\n ZendeskTicketAttachment,\n} from '../types';\nimport { formatComment, formatList, formatTicket, truncateIfNeeded } from '../utils/formatting';\nimport {\n buildCursorParams,\n buildOffsetParams,\n extractPaginationMeta,\n extractSearchPaginationMeta,\n} from '../utils/pagination';\nimport type { ToolContext, ToolDefinition, ToolImageContent, ToolTextContent } from './definitions';\n\nconst formatReference = (attachment: ZendeskTicketAttachment): string =>\n `**${attachment.file_name}** (id ${attachment.id}, ${attachment.content_type}, ${attachment.size} bytes) — ${attachment.content_url}`;\n\nconst buildEmbeddedImageBlocks = async (\n subdomain: string,\n token: string,\n attachment: ZendeskTicketAttachment,\n reference: string,\n): Promise<Array<ToolTextContent | ToolImageContent>> => {\n const { data, contentType } = await fetchZendeskBinary(subdomain, token, attachment.content_url);\n return [\n { type: 'image', data: data.toString('base64'), mimeType: contentType },\n { type: 'text', text: reference },\n ];\n};\n\n// Zendesk has no endpoint to list a ticket's attachments directly.\n// Attachments are always attached to comments, so the only way to collect\n// them all is to walk through every comment page and extract their attachments.\nconst fetchAllTicketComments = async (\n subdomain: string,\n token: string,\n ticketId: number,\n): Promise<ZendeskComment[]> => {\n const all: ZendeskComment[] = [];\n let cursor: string | undefined;\n let pages = 0;\n while (pages < MAX_COMMENT_PAGES) {\n const response = await zendeskGet<{\n comments: ZendeskComment[];\n meta?: { has_more: boolean; after_cursor: string };\n }>(subdomain, token, `/tickets/${ticketId}/comments`, buildCursorParams(MAX_PAGE_SIZE, cursor));\n all.push(...response.comments);\n pages += 1;\n if (!response.meta?.has_more || !response.meta?.after_cursor) break;\n cursor = response.meta.after_cursor;\n }\n return all;\n};\n\nconst collectAttachmentBlocks = async (\n subdomain: string,\n token: string,\n attachments: ZendeskTicketAttachment[],\n): Promise<Array<ToolTextContent | ToolImageContent>> => {\n const blocks: Array<ToolTextContent | ToolImageContent> = [];\n let embeddedCount = 0;\n\n for (const attachment of attachments) {\n const reference = formatReference(attachment);\n const isImage = attachment.content_type.startsWith('image/');\n\n if (!isImage) {\n blocks.push({ type: 'text', text: reference });\n continue;\n }\n\n let skipReason: string | null = null;\n if (attachment.size > MAX_ATTACHMENT_BYTES) {\n skipReason = 'skipped: exceeds 5 MB per-image limit';\n } else if (embeddedCount >= MAX_EMBEDDED_IMAGE_COUNT) {\n skipReason = `skipped: max ${MAX_EMBEDDED_IMAGE_COUNT} embedded images reached`;\n }\n\n if (skipReason) {\n blocks.push({ type: 'text', text: `${reference} — ${skipReason}` });\n continue;\n }\n\n try {\n blocks.push(...(await buildEmbeddedImageBlocks(subdomain, token, attachment, reference)));\n embeddedCount += 1;\n } catch (error) {\n const reason =\n error instanceof ZendeskApiError\n ? `download failed: ${error.status} ${error.statusText}`\n : 'download failed';\n blocks.push({ type: 'text', text: `${reference} — ${reason}` });\n }\n }\n\n return blocks;\n};\n\nexport const createTicketTools = (ctx: ToolContext): ToolDefinition[] => {\n const { subdomain, getToken } = ctx;\n\n return [\n {\n name: 'get_ticket',\n namespace: 'tickets',\n readOnly: true,\n title: 'Get Zendesk Ticket',\n description:\n 'Retrieve a Zendesk ticket by ID, including its comments if requested. Returns ticket details (subject, status, priority, assignee, tags, description) and optionally all comments/internal notes.',\n inputSchema: z.object({\n ticket_id: z.number().int().describe('Ticket ID'),\n include_comments: z.boolean().default(false).describe('Include ticket comments'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { ticket_id, include_comments } = params as {\n ticket_id: number;\n include_comments: boolean;\n };\n const token = await getToken();\n const { ticket } = await zendeskGet<{ ticket: ZendeskTicket }>(\n subdomain,\n token,\n `/tickets/${ticket_id}`,\n );\n let text = formatTicket(ticket);\n if (include_comments) {\n const { comments } = await zendeskGet<{ comments: ZendeskComment[] }>(\n subdomain,\n token,\n `/tickets/${ticket_id}/comments`,\n );\n text += `\\n\\n---\\n# Comments\\n\\n${comments.map(formatComment).join('\\n\\n')}`;\n }\n return { content: [{ type: 'text', text: truncateIfNeeded(text) }] };\n },\n },\n {\n name: 'get_ticket_attachments',\n namespace: 'tickets',\n readOnly: true,\n title: 'Get Zendesk Ticket Attachments',\n description:\n 'Retrieve ticket attachments. Images are embedded inline; other files are listed as text references.',\n inputSchema: z.object({\n ticket_id: z.number().int().describe('Ticket ID'),\n attachment_ids: z\n .array(z.number().int())\n .optional()\n .describe(\n 'Attachment IDs to fetch directly (e.g. extracted from a previous get_ticket(include_comments=true) call). When provided, skips the comments fetch entirely. When omitted, all attachments of the ticket are returned.',\n ),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { ticket_id, attachment_ids } = params as {\n ticket_id: number;\n attachment_ids?: number[];\n };\n const token = await getToken();\n\n let attachments: ZendeskTicketAttachment[];\n if (attachment_ids && attachment_ids.length > 0) {\n attachments = [];\n for (const id of attachment_ids) {\n try {\n const { attachment } = await zendeskGet<{ attachment: ZendeskTicketAttachment }>(\n subdomain,\n token,\n `/attachments/${id}`,\n );\n attachments.push(attachment);\n } catch (error) {\n if (!(error instanceof ZendeskApiError) || error.status !== 404) throw error;\n }\n }\n } else {\n const comments = await fetchAllTicketComments(subdomain, token, ticket_id);\n attachments = comments.flatMap((c) => c.attachments ?? []);\n }\n\n if (attachments.length === 0) {\n return {\n content: [{ type: 'text', text: `No attachments found on ticket #${ticket_id}.` }],\n };\n }\n const blocks = await collectAttachmentBlocks(subdomain, token, attachments);\n return {\n content: [\n {\n type: 'text',\n text: `# Attachments for ticket #${ticket_id} (${attachments.length} total)`,\n },\n ...blocks,\n ],\n };\n },\n },\n {\n name: 'search_tickets',\n namespace: 'tickets',\n readOnly: true,\n title: 'Search Zendesk Tickets',\n description:\n 'Search tickets using Zendesk query syntax (e.g., \"status:open assignee:me\", \"priority:urgent type:incident\"). Returns total count.',\n inputSchema: z.object({\n query: z.string().min(1).describe('Zendesk search query string'),\n per_page: z\n .number()\n .int()\n .min(1)\n .max(MAX_PAGE_SIZE)\n .default(DEFAULT_PAGE_SIZE)\n .describe('Results per page'),\n page: z.number().int().min(1).default(1).describe('Page number'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { query, per_page, page } = params as {\n query: string;\n per_page: number;\n page: number;\n };\n const token = await getToken();\n const response = await zendeskGet<ZendeskListResponse<ZendeskTicket>>(\n subdomain,\n token,\n '/search',\n {\n query: `type:ticket ${query}`,\n ...buildOffsetParams(per_page, page),\n },\n );\n return {\n content: [\n {\n type: 'text',\n text: formatList(\n response.results ?? [],\n formatTicket,\n extractSearchPaginationMeta(response, per_page, page),\n ),\n },\n ],\n };\n },\n },\n {\n name: 'create_ticket',\n namespace: 'tickets',\n readOnly: false,\n title: 'Create Zendesk Ticket',\n description:\n 'Create a new Zendesk support ticket with subject, description, and optional priority/type/assignee/tags.',\n inputSchema: z.object({\n subject: z.string().min(1).describe('Ticket subject'),\n description: z.string().min(1).describe('Ticket description'),\n priority: z.enum(['urgent', 'high', 'normal', 'low']).optional(),\n type: z.enum(['problem', 'incident', 'question', 'task']).optional(),\n assignee_id: z.number().int().optional(),\n group_id: z.number().int().optional(),\n tags: z.array(z.string()).optional(),\n custom_fields: z.array(z.object({ id: z.number().int(), value: z.unknown() })).optional(),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: false,\n idempotentHint: false,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { subject, description, ...rest } = params as Record<string, unknown>;\n const token = await getToken();\n const { ticket } = await zendeskPost<{ ticket: ZendeskTicket }>(\n subdomain,\n token,\n '/tickets',\n {\n ticket: { subject, comment: { body: description }, ...rest },\n },\n );\n return {\n content: [\n { type: 'text', text: `Ticket #${ticket.id} created.\\n\\n${formatTicket(ticket)}` },\n ],\n };\n },\n },\n {\n name: 'update_ticket',\n namespace: 'tickets',\n readOnly: false,\n title: 'Update Zendesk Ticket',\n description:\n 'Update an existing ticket (status, priority, type, assignee, group, subject, tags, custom fields).',\n inputSchema: z.object({\n ticket_id: z.number().int().describe('Ticket ID'),\n status: z.enum(['new', 'open', 'pending', 'hold', 'solved', 'closed']).optional(),\n priority: z.enum(['urgent', 'high', 'normal', 'low']).optional(),\n type: z.enum(['problem', 'incident', 'question', 'task']).optional(),\n assignee_id: z.number().int().optional(),\n group_id: z.number().int().optional(),\n subject: z.string().optional(),\n tags: z.array(z.string()).optional(),\n custom_fields: z.array(z.object({ id: z.number().int(), value: z.unknown() })).optional(),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: true,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { ticket_id, ...updates } = params as { ticket_id: number } & Record<string, unknown>;\n const token = await getToken();\n const { ticket } = await zendeskPut<{ ticket: ZendeskTicket }>(\n subdomain,\n token,\n `/tickets/${ticket_id}`,\n { ticket: updates },\n );\n return {\n content: [\n { type: 'text', text: `Ticket #${ticket.id} updated.\\n\\n${formatTicket(ticket)}` },\n ],\n };\n },\n },\n {\n name: 'add_private_note',\n namespace: 'tickets',\n readOnly: false,\n title: 'Add Private Note',\n description: 'Add an internal note (not visible to requester) to a ticket.',\n inputSchema: z.object({\n ticket_id: z.number().int().describe('Ticket ID'),\n body: z.string().min(1).describe('Note content'),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: false,\n idempotentHint: false,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { ticket_id, body } = params as { ticket_id: number; body: string };\n const token = await getToken();\n await zendeskPut(subdomain, token, `/tickets/${ticket_id}`, {\n ticket: { comment: { body, public: false } },\n });\n return { content: [{ type: 'text', text: `Private note added to ticket #${ticket_id}.` }] };\n },\n },\n {\n name: 'add_public_comment',\n namespace: 'tickets',\n readOnly: false,\n title: 'Add Public Comment',\n description: 'Add a public comment (visible to requester) to a ticket.',\n inputSchema: z.object({\n ticket_id: z.number().int().describe('Ticket ID'),\n body: z.string().min(1).describe('Comment content'),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: false,\n idempotentHint: false,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { ticket_id, body } = params as { ticket_id: number; body: string };\n const token = await getToken();\n await zendeskPut(subdomain, token, `/tickets/${ticket_id}`, {\n ticket: { comment: { body, public: true } },\n });\n return {\n content: [{ type: 'text', text: `Public comment added to ticket #${ticket_id}.` }],\n };\n },\n },\n {\n name: 'list_tickets',\n namespace: 'tickets',\n readOnly: true,\n title: 'List Zendesk Tickets',\n description: 'List tickets with cursor-based pagination, sorted by most recently updated.',\n inputSchema: z.object({\n page_size: z.number().int().min(1).max(MAX_PAGE_SIZE).default(DEFAULT_PAGE_SIZE),\n cursor: z.string().optional().describe('Pagination cursor'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { page_size, cursor } = params as { page_size: number; cursor?: string };\n const token = await getToken();\n const response = await zendeskGet<ZendeskListResponse<ZendeskTicket>>(\n subdomain,\n token,\n '/tickets',\n buildCursorParams(page_size, cursor),\n );\n return {\n content: [\n {\n type: 'text',\n text: formatList(\n response.tickets ?? [],\n formatTicket,\n extractPaginationMeta(response),\n ),\n },\n ],\n };\n },\n },\n {\n name: 'get_linked_incidents',\n namespace: 'tickets',\n readOnly: true,\n title: 'Get Linked Incidents',\n description: 'Get all incident tickets linked to a problem ticket.',\n inputSchema: z.object({\n problem_id: z.number().int().describe('Problem ticket ID'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { problem_id } = params as { problem_id: number };\n const token = await getToken();\n const response = await zendeskGet<ZendeskListResponse<ZendeskTicket>>(\n subdomain,\n token,\n `/tickets/${problem_id}/incidents`,\n );\n const incidents = response.tickets ?? [];\n const text =\n incidents.length > 0\n ? `# Incidents linked to problem #${problem_id}\\n\\n${incidents.map(formatTicket).join('\\n\\n')}`\n : `No incidents linked to problem #${problem_id}.`;\n return { content: [{ type: 'text', text: truncateIfNeeded(text) }] };\n },\n },\n {\n name: 'manage_tags',\n namespace: 'tickets',\n readOnly: false,\n title: 'Manage Ticket Tags',\n description: 'Add or remove tags on a ticket.',\n inputSchema: z.object({\n ticket_id: z.number().int().describe('Ticket ID'),\n add: z.array(z.string()).optional().describe('Tags to add'),\n remove: z.array(z.string()).optional().describe('Tags to remove'),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: true,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { ticket_id, add, remove } = params as {\n ticket_id: number;\n add?: string[];\n remove?: string[];\n };\n const token = await getToken();\n const { ticket } = await zendeskGet<{ ticket: ZendeskTicket }>(\n subdomain,\n token,\n `/tickets/${ticket_id}`,\n );\n const tags = new Set(ticket.tags);\n add?.forEach((t) => {\n tags.add(t);\n });\n remove?.forEach((t) => {\n tags.delete(t);\n });\n const { ticket: updated } = await zendeskPut<{ ticket: ZendeskTicket }>(\n subdomain,\n token,\n `/tickets/${ticket_id}`,\n { ticket: { tags: [...tags] } },\n );\n return {\n content: [\n {\n type: 'text',\n text: `Tags updated on ticket #${ticket_id}. Current: ${updated.tags.join(', ') || 'none'}`,\n },\n ],\n };\n },\n },\n ];\n};\n","import * as z from 'zod/v4';\nimport { zendeskGet } from '../client/zendesk-api';\nimport { DEFAULT_PAGE_SIZE, MAX_PAGE_SIZE } from '../constants';\nimport type { ZendeskListResponse, ZendeskOrganization, ZendeskUser } from '../types';\nimport { formatList, formatOrganization, formatUser } from '../utils/formatting';\nimport {\n buildCursorParams,\n buildOffsetParams,\n extractPaginationMeta,\n extractSearchPaginationMeta,\n} from '../utils/pagination';\nimport type { ToolContext, ToolDefinition } from './definitions';\n\nexport const createUserTools = (ctx: ToolContext): ToolDefinition[] => {\n const { subdomain, getToken } = ctx;\n\n return [\n {\n name: 'get_current_user',\n namespace: 'users',\n readOnly: true,\n title: 'Get Current Zendesk User',\n description:\n 'Get the currently authenticated Zendesk user. Useful to verify identity and permissions.',\n inputSchema: z.object({}),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async () => {\n const token = await getToken();\n const { user } = await zendeskGet<{ user: ZendeskUser }>(subdomain, token, '/users/me');\n return { content: [{ type: 'text', text: formatUser(user) }] };\n },\n },\n {\n name: 'search_users',\n namespace: 'users',\n readOnly: true,\n title: 'Search Zendesk Users',\n description:\n 'Search for users by name, email, or other criteria using Zendesk search query syntax. Returns total count.',\n inputSchema: z.object({\n query: z.string().min(1).describe('Search query'),\n per_page: z\n .number()\n .int()\n .min(1)\n .max(MAX_PAGE_SIZE)\n .default(DEFAULT_PAGE_SIZE)\n .describe('Results per page'),\n page: z.number().int().min(1).default(1).describe('Page number'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { query, per_page, page } = params as {\n query: string;\n per_page: number;\n page: number;\n };\n const token = await getToken();\n const response = await zendeskGet<ZendeskListResponse<ZendeskUser>>(\n subdomain,\n token,\n '/search',\n {\n query: `type:user ${query}`,\n ...buildOffsetParams(per_page, page),\n },\n );\n return {\n content: [\n {\n type: 'text',\n text: formatList(\n response.results ?? [],\n formatUser,\n extractSearchPaginationMeta(response, per_page, page),\n ),\n },\n ],\n };\n },\n },\n {\n name: 'get_user',\n namespace: 'users',\n readOnly: true,\n title: 'Get Zendesk User',\n description: 'Retrieve a user by ID.',\n inputSchema: z.object({ user_id: z.number().int().describe('User ID') }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { user_id } = params as { user_id: number };\n const token = await getToken();\n const { user } = await zendeskGet<{ user: ZendeskUser }>(\n subdomain,\n token,\n `/users/${user_id}`,\n );\n return { content: [{ type: 'text', text: formatUser(user) }] };\n },\n },\n {\n name: 'get_organization',\n namespace: 'users',\n readOnly: true,\n title: 'Get Zendesk Organization',\n description: 'Retrieve an organization by ID.',\n inputSchema: z.object({ organization_id: z.number().int().describe('Organization ID') }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { organization_id } = params as { organization_id: number };\n const token = await getToken();\n const { organization } = await zendeskGet<{ organization: ZendeskOrganization }>(\n subdomain,\n token,\n `/organizations/${organization_id}`,\n );\n return { content: [{ type: 'text', text: formatOrganization(organization) }] };\n },\n },\n {\n name: 'list_organizations',\n namespace: 'users',\n readOnly: true,\n title: 'List Zendesk Organizations',\n description: 'List all organizations with pagination.',\n inputSchema: z.object({\n page_size: z.number().int().min(1).max(MAX_PAGE_SIZE).default(DEFAULT_PAGE_SIZE),\n cursor: z.string().optional(),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { page_size, cursor } = params as { page_size: number; cursor?: string };\n const token = await getToken();\n const response = await zendeskGet<ZendeskListResponse<ZendeskOrganization>>(\n subdomain,\n token,\n '/organizations',\n buildCursorParams(page_size, cursor),\n );\n return {\n content: [\n {\n type: 'text',\n text: formatList(\n response.organizations ?? [],\n formatOrganization,\n extractPaginationMeta(response),\n ),\n },\n ],\n };\n },\n },\n ];\n};\n","import type { ToolContext, ToolDefinition } from './definitions';\nimport { createHelpCenterTools } from './help-center';\nimport { createSearchTools } from './search';\nimport { createTicketTools } from './tickets';\nimport { createUserTools } from './users';\n\nexport type { ToolContext, ToolDefinition } from './definitions';\n\nexport const createAllTools = (ctx: ToolContext): ToolDefinition[] => [\n ...createTicketTools(ctx),\n ...createSearchTools(ctx),\n ...createHelpCenterTools(ctx),\n ...createUserTools(ctx),\n];\n","import { readFileSync } from 'node:fs';\nimport { dirname, join } from 'node:path';\nimport { fileURLToPath } from 'node:url';\n\nexport interface PackageInfo {\n name: string;\n version: string;\n}\n\n// Used only if package.json can't be located/parsed (should not happen in a\n// published install). Keeps the server bootable rather than throwing.\nconst FALLBACK: PackageInfo = {\n name: '@fruggr/zendesk-mcp-server',\n version: '0.0.0',\n};\n\n/**\n * Read `name`/`version` from the package's own package.json at runtime instead\n * of hardcoding them. Walks up from this module to the nearest package.json,\n * which resolves correctly both when bundled (`dist/index.js` → repo root) and\n * from source/tests (`src/` has no package.json, so the root is found). Reading\n * at runtime (not inlining at build) matters because semantic-release bumps the\n * version into package.json before publishing, after the build step.\n */\n// package.json can't change during the process lifetime, and createMcpServer\n// (hence this) may run several times (notably across tests) — cache the result.\nlet cached: PackageInfo | undefined;\n\nexport const readPackageInfo = (): PackageInfo => {\n if (cached) return cached;\n // Only readFileSync/JSON.parse can throw here (caught per-iteration below);\n // fileURLToPath/dirname/join don't, so no outer guard is needed.\n let dir = dirname(fileURLToPath(import.meta.url));\n for (let depth = 0; depth < 8; depth++) {\n try {\n // JSON.parse yields `unknown`; validate at runtime rather than asserting.\n const raw: unknown = JSON.parse(readFileSync(join(dir, 'package.json'), 'utf8'));\n if (raw && typeof raw === 'object') {\n const pkg = raw as Partial<PackageInfo>;\n if (typeof pkg.name === 'string' && typeof pkg.version === 'string') {\n cached = { name: pkg.name, version: pkg.version };\n return cached;\n }\n }\n } catch {\n // No readable/valid package.json here — keep walking up.\n }\n const parent = dirname(dir);\n if (parent === dir) break;\n dir = parent;\n }\n cached = FALLBACK;\n return cached;\n};\n","import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';\nimport * as z from 'zod/v4';\nimport type { Config } from './config';\nimport { filterTools, groupByNamespace } from './routing/registry';\nimport type { ToolAnnotations } from './tools/definitions';\nimport { createAllTools, type ToolDefinition } from './tools/index';\nimport { type Logger, silentLogger } from './utils/logger';\nimport { readPackageInfo } from './utils/package-info';\n\nconst NAMESPACE_LABELS: Record<string, { toolName: string; title: string }> = {\n tickets: { toolName: 'zendesk_tickets', title: 'Zendesk Tickets' },\n help_center: { toolName: 'zendesk_help_center', title: 'Zendesk Help Center' },\n users: { toolName: 'zendesk_users', title: 'Zendesk Users' },\n};\n\n// Keep proxy descriptions compact: a proxy tool concatenates one line per\n// sub-operation, so only the first sentence of each tool description is\n// included. Clients still receive the full schema via the wrapped tool.\nexport const summarizeDescription = (description: string): string => {\n const idx = description.indexOf('. ');\n if (idx === -1) return description;\n return description.slice(0, idx + 1);\n};\n\nexport const buildOperationList = (\n tools: ReadonlyArray<Pick<ToolDefinition, 'name' | 'description' | 'readOnly'>>,\n): string =>\n tools\n .map(\n (t) =>\n `- **${t.name}**: ${summarizeDescription(t.description)}${t.readOnly ? '' : ' (write)'}`,\n )\n .join('\\n');\n\n// A proxy aggregates N sub-operations. Hints follow the safest plausible\n// reading: readOnly/idempotent only if EVERY op is, destructive as soon as\n// ANY op is. openWorld is always true (we always hit Zendesk).\n// Mistral/Vibe ignore annotations entirely, hence the `[RO]` prefix below.\nexport const aggregateAnnotations = (\n tools: ReadonlyArray<Pick<ToolDefinition, 'annotations'>>,\n): ToolAnnotations => ({\n readOnlyHint: tools.every((t) => t.annotations.readOnlyHint),\n destructiveHint: tools.some((t) => t.annotations.destructiveHint),\n idempotentHint: tools.every((t) => t.annotations.idempotentHint),\n openWorldHint: true,\n});\n\nconst registerProxyTool = (\n server: McpServer,\n toolName: string,\n title: string,\n tools: ToolDefinition[],\n handlerMap: Map<string, ToolDefinition>,\n readOnlyMode: boolean,\n): void => {\n const operationNames = tools.map((t) => t.name);\n const operationList = buildOperationList(tools);\n const annotations = aggregateAnnotations(tools);\n const prefix = readOnlyMode ? '[RO] ' : '';\n\n server.registerTool(\n toolName,\n {\n title,\n description: `${prefix}${title}. Specify the operation and its parameters.\\n\\nAvailable operations:\\n${operationList}`,\n inputSchema: z.object({\n operation: z.string().describe(`One of: ${operationNames.join(', ')}`),\n params: z.record(z.string(), z.unknown()).default({}).describe('Operation parameters'),\n }),\n annotations,\n },\n async ({ operation, params }) => {\n const def = handlerMap.get(operation);\n if (!def) {\n return {\n content: [\n {\n type: 'text' as const,\n text: `Unknown operation \"${operation}\". Available: ${operationNames.join(', ')}`,\n },\n ],\n };\n }\n // Validate params through the tool's own schema\n const validated = def.inputSchema.parse(params);\n return def.handler(validated);\n },\n );\n};\n\nexport const createMcpServer = (\n config: Config,\n getToken: () => string | Promise<string>,\n logger: Logger = silentLogger,\n): McpServer => {\n // Read name/version from package.json at runtime rather than hardcoding them\n // (the old literals were stale and even carried the wrong package name).\n const pkg = readPackageInfo();\n const server = new McpServer(\n {\n name: pkg.name,\n version: pkg.version,\n },\n // Advertise the logging capability so structured diagnostics (notably the\n // OAuth browser flow) reach clients that support it. Clients that don't\n // simply ignore the notifications.\n { capabilities: { logging: {} } },\n );\n\n // Route the logger's MCP sink through this server. Auth runs lazily on the\n // first tool call (after connect), so notifications can flow by then.\n logger.attachServer(server);\n\n const allTools = createAllTools({ subdomain: config.subdomain, getToken });\n\n // Apply filters (--read-only, --namespace, --tool)\n const filteredTools = filterTools(allTools, {\n readOnly: config.readOnly,\n namespaces: config.namespaces,\n tools: config.tools,\n });\n\n // Build handler map for proxy dispatch\n const handlerMap = new Map<string, ToolDefinition>();\n for (const tool of filteredTools) {\n handlerMap.set(tool.name, tool);\n }\n\n switch (config.mode) {\n case 'all': {\n // Register each tool individually\n for (const tool of filteredTools) {\n server.registerTool(\n tool.name,\n {\n title: tool.title,\n description: tool.description,\n inputSchema: tool.inputSchema,\n annotations: tool.annotations,\n },\n async (params) => tool.handler(params as Record<string, unknown>),\n );\n }\n break;\n }\n case 'namespace': {\n const grouped = groupByNamespace(filteredTools);\n for (const [namespace, tools] of grouped) {\n const label = NAMESPACE_LABELS[namespace];\n if (label) {\n registerProxyTool(\n server,\n label.toolName,\n label.title,\n tools,\n handlerMap,\n config.readOnly,\n );\n }\n }\n break;\n }\n case 'single': {\n registerProxyTool(server, 'zendesk', 'Zendesk', filteredTools, handlerMap, config.readOnly);\n break;\n }\n }\n\n logger.info('tools_registered', { count: filteredTools.length, mode: config.mode });\n return server;\n};\n","import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';\nimport { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport { type Logger, silentLogger } from '../utils/logger';\n\nexport const startStdioTransport = async (\n server: McpServer,\n logger: Logger = silentLogger,\n): Promise<void> => {\n const transport = new StdioServerTransport();\n await server.connect(transport);\n logger.info('stdio_transport_ready');\n};\n","import { buildBasicAuthHeader } from './auth/api-token';\nimport { createTokenStore } from './auth/token-store';\nimport { loadConfig } from './config';\nimport { createMcpServer } from './server';\nimport { startStdioTransport } from './transports/stdio';\nimport { createLogger } from './utils/logger';\n\nconst main = async (): Promise<void> => {\n const config = loadConfig();\n const logger = createLogger(config.logLevel);\n\n if (config.zendeskEmail && config.zendeskApiToken) {\n // API token mode — static Basic auth\n const staticToken = buildBasicAuthHeader(config.zendeskEmail, config.zendeskApiToken);\n const getToken = () => staticToken;\n const server = createMcpServer(config, getToken, logger);\n await startStdioTransport(server, logger);\n } else {\n // OAuth mode — browser-based auth on first tool call\n const tokenStore = createTokenStore(\n {\n subdomain: config.subdomain,\n oauthClientId: config.oauthClientId,\n },\n logger,\n );\n const server = createMcpServer(config, tokenStore.getToken, logger);\n await startStdioTransport(server, logger);\n }\n};\n\nmain().catch((error) => {\n console.error('Fatal error:', error);\n process.exit(1);\n});\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../src/auth/api-token.ts","../src/utils/logger.ts","../src/constants.ts","../src/auth/browser-oauth.ts","../src/utils/package-info.ts","../src/auth/token-persistence.ts","../src/auth/token-store.ts","../src/config.ts","../src/client/zendesk-api.ts","../src/routing/registry.ts","../src/utils/article-sections.ts","../src/utils/formatting.ts","../src/utils/pagination.ts","../src/tools/help-center.ts","../src/tools/search.ts","../src/tools/tickets.ts","../src/tools/users.ts","../src/tools/index.ts","../src/server.ts","../src/transports/stdio.ts","../src/index.ts"],"sourcesContent":["/**\n * API token authentication for stdio transport.\n * Uses Basic auth: base64(email/token:api_token)\n */\nexport const buildBasicAuthHeader = (email: string, apiToken: string): string => {\n const credentials = `${email}/token:${apiToken}`;\n return `Basic ${Buffer.from(credentials).toString('base64')}`;\n};\n","import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';\nimport type { LogLevel } from '../config';\n\ntype Fields = Record<string, unknown>;\n\n/**\n * Minimal structured logger with two sinks:\n * - stderr (always, gated by the configured level) — the universal floor that\n * every mainstream MCP client captures to a log file;\n * - MCP `notifications/message` (when a server is attached and advertises the\n * `logging` capability) — surfaced by clients that support it, ignored\n * gracefully by those that don't.\n *\n * Both sinks share a single level gate (`LOG_LEVEL`); MCP clients may further\n * raise the floor via `logging/setLevel`, which the SDK filters on its own.\n */\nexport interface Logger {\n debug(event: string, fields?: Fields): void;\n info(event: string, fields?: Fields): void;\n warn(event: string, fields?: Fields): void;\n error(event: string, fields?: Fields): void;\n /** Attach an McpServer so logs are also emitted as MCP notifications. */\n attachServer(server: Pick<McpServer, 'sendLoggingMessage'>): void;\n}\n\nconst SEVERITY: Record<LogLevel, number> = { debug: 0, info: 1, warn: 2, error: 3 };\n\n// Our 4 levels mapped onto the MCP logging levels (note: `warning`, not `warn`).\nconst MCP_LEVEL: Record<LogLevel, 'debug' | 'info' | 'warning' | 'error'> = {\n debug: 'debug',\n info: 'info',\n warn: 'warning',\n error: 'error',\n};\n\n// Field keys whose values must never reach a sink, matched after normalising\n// (lowercase, separators stripped) so `access_token`, `accessToken` and\n// `ACCESS-TOKEN` all collapse to the same key. Diagnostic fields such as\n// `errorCode`, `status` or `error` (a message) are intentionally NOT listed.\nconst REDACTED_KEYS = new Set([\n 'token',\n 'accesstoken',\n 'refreshtoken',\n 'code',\n 'codeverifier',\n 'authorization',\n 'password',\n 'secret',\n 'apitoken',\n 'bearer',\n]);\n\nconst isSensitive = (key: string): boolean =>\n REDACTED_KEYS.has(key.toLowerCase().replace(/[_-]/g, ''));\n\n// Recursively redact: a sensitive *key* anywhere in the tree (top-level or\n// nested in objects/arrays) has its value replaced, so `{ oauth: { token } }`\n// can't leak. Primitives are returned as-is.\nconst redactValue = (value: unknown): unknown => {\n if (Array.isArray(value)) return value.map(redactValue);\n if (value && typeof value === 'object') {\n const out: Record<string, unknown> = {};\n for (const [key, val] of Object.entries(value as Record<string, unknown>)) {\n out[key] = isSensitive(key) ? '[REDACTED]' : redactValue(val);\n }\n return out;\n }\n return value;\n};\n\nconst renderValue = (value: unknown): string => {\n if (typeof value === 'string') return value;\n if (typeof value === 'number' || typeof value === 'boolean' || value === null) {\n return String(value);\n }\n try {\n return JSON.stringify(value);\n } catch {\n return '[unserializable]';\n }\n};\n\nconst formatLine = (level: LogLevel, event: string, fields: Fields): string => {\n const parts = Object.entries(fields).map(([key, value]) => `${key}=${renderValue(value)}`);\n return `[zendesk-mcp] [${level}] ${event}${parts.length ? ` ${parts.join(' ')}` : ''}`;\n};\n\nconst noop = (): void => {};\n\nexport const silentLogger: Logger = {\n debug: noop,\n info: noop,\n warn: noop,\n error: noop,\n attachServer: noop,\n};\n\nexport const createLogger = (level: LogLevel): Logger => {\n const min = SEVERITY[level];\n let server: Pick<McpServer, 'sendLoggingMessage'> | undefined;\n\n const emit = (lvl: LogLevel, event: string, fields?: Fields): void => {\n if (SEVERITY[lvl] < min) return;\n\n const safe = fields ? (redactValue(fields) as Fields) : {};\n console.error(formatLine(lvl, event, safe));\n\n if (server) {\n try {\n void server\n .sendLoggingMessage({\n level: MCP_LEVEL[lvl],\n logger: 'zendesk-mcp-server',\n // `event` last so a caller-supplied `fields.event` can't shadow the\n // canonical event name.\n data: { ...safe, event },\n })\n .catch(noop);\n } catch {\n // Forwarding is best-effort (e.g. transport not connected yet);\n // it must never break the flow that emitted the log.\n }\n }\n };\n\n return {\n debug: (event, fields) => emit('debug', event, fields),\n info: (event, fields) => emit('info', event, fields),\n warn: (event, fields) => emit('warn', event, fields),\n error: (event, fields) => emit('error', event, fields),\n attachServer: (s) => {\n server = s;\n },\n };\n};\n","export const CHARACTER_LIMIT = 25_000;\nexport const DEFAULT_PAGE_SIZE = 100;\nexport const MAX_PAGE_SIZE = 100;\nexport const TOKEN_CACHE_TTL_MS = 5 * 60 * 1000;\n\n// Local port the OAuth PKCE flow listens on for the browser callback. Must match\n// the redirect URL registered in the Zendesk OAuth client. Deliberately picked\n// outside the usual dev range (3000/5000/8080…) and below the OS ephemeral\n// ranges (Linux ≥ 32768, Windows ≥ 49152) so it is neither commonly taken nor\n// grabbed by a transient socket. Override via ZENDESK_OAUTH_CALLBACK_PORT /\n// --callback-port (and register the matching redirect URL in Zendesk).\nexport const DEFAULT_CALLBACK_PORT = 27439;\n\n// Per-attachment cap for inline image content. Images larger than this are\n// returned as text references instead of base64 image content blocks.\n// Aligned with the Anthropic vision API per-image limit.\nexport const MAX_ATTACHMENT_BYTES = 5 * 1024 * 1024;\n\n// Maximum number of images embedded as base64 in a single tool call.\n// Remaining images are returned as text references.\nexport const MAX_EMBEDDED_IMAGE_COUNT = 10;\n\n// Hard cap on comment pages fetched when collecting ticket attachments.\n// Overridable via ZENDESK_MAX_COMMENT_PAGES for tickets with many comments.\nexport const MAX_COMMENT_PAGES = Number(process.env['ZENDESK_MAX_COMMENT_PAGES'] ?? 10);\n\n// Thresholds used to nudge callers toward section-scoped article tools\n// (get_article_outline / get_article_section / update_article_section)\n// instead of fetching/rewriting the full body.\nexport const LARGE_ARTICLE_BODY_CHARS = 3_000;\nexport const LARGE_ARTICLE_SECTION_COUNT = 4;\n\nexport const getBaseUrl = (subdomain: string): string => `https://${subdomain}.zendesk.com/api/v2`;\n\nexport const getHelpCenterBaseUrl = (subdomain: string): string =>\n `https://${subdomain}.zendesk.com/api/v2/help_center`;\n\nexport const getOAuthUrls = (subdomain: string) => ({\n authorizeUrl: `https://${subdomain}.zendesk.com/oauth/authorizations/new`,\n tokenUrl: `https://${subdomain}.zendesk.com/oauth/tokens`,\n});\n","import { createHash, randomBytes } from 'node:crypto';\nimport { readFileSync } from 'node:fs';\nimport { createServer, type Server } from 'node:http';\nimport { release } from 'node:os';\nimport open from 'open';\nimport { DEFAULT_CALLBACK_PORT, getOAuthUrls } from '../constants';\nimport { type Logger, silentLogger } from '../utils/logger';\n\nconst AUTH_TIMEOUT_MS = 5 * 60 * 1000;\n\n/** Best-effort WSL detection: WSL kernels carry \"microsoft\" in /proc/version. */\nconst detectWsl = (): boolean => {\n if (process.platform !== 'linux') return false;\n try {\n return readFileSync('/proc/version', 'utf8').toLowerCase().includes('microsoft');\n } catch {\n return false;\n }\n};\n\ninterface BrowserOAuthConfig {\n subdomain: string;\n oauthClientId: string;\n callbackPort?: number | undefined;\n}\n\ninterface TokenResult {\n access_token: string;\n refresh_token?: string;\n token_type: string;\n scope: string;\n // Present only when the Zendesk OAuth client has token expiration enabled.\n // Seconds until the access/refresh token expires.\n expires_in?: number;\n refresh_token_expires_in?: number;\n}\n\n/**\n * Build an actionable error for a callback port that's already taken. The raw\n * Node `EADDRINUSE` is opaque to both the user and the LLM; this spells out the\n * fix (set a free port + register the matching redirect URL in Zendesk). The\n * `(EADDRINUSE)` marker and `code` are kept for diagnostics/tests.\n */\nconst callbackPortInUseError = (port: number, cause: Error): Error =>\n Object.assign(\n new Error(\n `Cannot start the Zendesk OAuth sign-in: local callback port ${port} is already in use ` +\n `by another process. Set ZENDESK_OAUTH_CALLBACK_PORT (or --callback-port) to a free port, ` +\n `then register http://localhost:<port>/callback as a redirect URL in your Zendesk OAuth ` +\n `client. (EADDRINUSE)`,\n ),\n { code: 'EADDRINUSE', cause },\n );\n\n/**\n * Escape a string for safe interpolation into HTML text/attribute context.\n * The local callback server echoes attacker-controllable values (the OAuth\n * `error_description` query param, token-exchange error bodies) back into the\n * browser response; without escaping these are a reflected-XSS sink.\n */\nconst escapeHtml = (value: string): string =>\n value\n .replace(/&/g, '&')\n .replace(/</g, '<')\n .replace(/>/g, '>')\n .replace(/\"/g, '"')\n .replace(/'/g, ''');\n\n/**\n * A started OAuth flow: the local callback server is already listening and the\n * browser-open attempt has been made. `authorizeUrl` is available immediately\n * (so callers can surface it to the user without blocking), while `tokenPromise`\n * resolves later, when the user completes the browser flow — or rejects on\n * error/timeout.\n */\nexport interface StartedBrowserAuth {\n authorizeUrl: string;\n tokenPromise: Promise<TokenResult>;\n}\n\nconst generateCodeVerifier = (): string => randomBytes(32).toString('base64url');\n\nconst generateCodeChallenge = (verifier: string): string =>\n createHash('sha256').update(verifier).digest('base64url');\n\n/**\n * Begin the OAuth 2.1 PKCE flow: start the local callback server, attempt to\n * open the browser, and return as soon as the server is listening with the\n * authorize URL plus a promise that settles when the callback arrives.\n *\n * Splitting \"start\" from \"await the token\" lets callers stay non-blocking: they\n * can hand the URL back to the user immediately instead of holding a request\n * open for up to the 5-minute timeout.\n */\nexport const startBrowserAuth = (\n config: BrowserOAuthConfig,\n logger: Logger = silentLogger,\n): Promise<StartedBrowserAuth> => {\n const { subdomain, oauthClientId } = config;\n const { authorizeUrl: authorizeBase, tokenUrl } = getOAuthUrls(subdomain);\n const codeVerifier = generateCodeVerifier();\n const codeChallenge = generateCodeChallenge(codeVerifier);\n\n return new Promise<StartedBrowserAuth>((resolveStarted, rejectStarted) => {\n let resolveToken!: (token: TokenResult) => void;\n let rejectToken!: (err: unknown) => void;\n const tokenPromise = new Promise<TokenResult>((resolve, reject) => {\n resolveToken = resolve;\n rejectToken = reject;\n });\n\n let authTimeout: ReturnType<typeof setTimeout> | undefined;\n let callbackServer: Server;\n\n callbackServer = createServer(async (req, res) => {\n const url = new URL(req.url ?? '/', `http://localhost`);\n\n if (url.pathname !== '/callback') {\n res.writeHead(404);\n res.end('Not found');\n return;\n }\n\n const code = url.searchParams.get('code');\n const error = url.searchParams.get('error');\n\n logger.debug('oauth_callback_received', {\n hasCode: Boolean(code),\n hasError: Boolean(error),\n });\n\n if (error) {\n const desc = url.searchParams.get('error_description') ?? error;\n res.writeHead(400, { 'Content-Type': 'text/html' });\n res.end(\n `<html><body><h1>Authentication failed</h1><p>${escapeHtml(desc)}</p></body></html>`,\n );\n clearTimeout(authTimeout);\n callbackServer.close();\n rejectToken(new Error(`OAuth error: ${desc}`));\n return;\n }\n\n if (!code) {\n res.writeHead(400, { 'Content-Type': 'text/html' });\n res.end('<html><body><h1>Missing authorization code</h1></body></html>');\n clearTimeout(authTimeout);\n callbackServer.close();\n rejectToken(new Error('Missing authorization code in callback'));\n return;\n }\n\n // Exchange code for token\n try {\n const callbackPort = (callbackServer.address() as { port: number }).port;\n const tokenBody = new URLSearchParams({\n grant_type: 'authorization_code',\n code,\n client_id: oauthClientId,\n redirect_uri: `http://localhost:${callbackPort}/callback`,\n code_verifier: codeVerifier,\n });\n\n const tokenResponse = await fetch(tokenUrl, {\n method: 'POST',\n headers: { 'Content-Type': 'application/x-www-form-urlencoded' },\n body: tokenBody.toString(),\n });\n\n logger.debug('oauth_token_exchange', { status: tokenResponse.status });\n\n if (!tokenResponse.ok) {\n const errorBody = await tokenResponse.text();\n throw new Error(`Token exchange failed (${tokenResponse.status}): ${errorBody}`);\n }\n\n const tokenData = (await tokenResponse.json()) as TokenResult;\n logger.info('oauth_authenticated');\n\n res.writeHead(200, { 'Content-Type': 'text/html' });\n res.end(\n '<html><body>' +\n '<h1>Authentication successful!</h1>' +\n '<p>You can close this tab and return to Claude Code.</p>' +\n '<p>This tab will auto-close in <span id=\"t\">10</span>s.</p>' +\n '<script>' +\n 'let n=10;' +\n 'const el=document.getElementById(\"t\");' +\n 'const i=setInterval(()=>{n--;el.textContent=n;if(n<=0){clearInterval(i);window.close();}},1000);' +\n '</script>' +\n '</body></html>',\n );\n\n clearTimeout(authTimeout);\n callbackServer.close();\n resolveToken(tokenData);\n } catch (err) {\n res.writeHead(500, { 'Content-Type': 'text/html' });\n res.end(\n `<html><body><h1>Token exchange failed</h1><p>${escapeHtml(err instanceof Error ? err.message : String(err))}</p></body></html>`,\n );\n clearTimeout(authTimeout);\n callbackServer.close();\n rejectToken(err);\n }\n });\n\n const requestedPort = config.callbackPort ?? DEFAULT_CALLBACK_PORT;\n\n // Listen failure (e.g. port already in use) before we ever get a URL: the\n // whole start fails so the caller can surface/retry. EADDRINUSE is rewrapped\n // into an actionable message (user *and* LLM can act on it).\n const onStartError = (err: Error) => {\n clearTimeout(authTimeout);\n const code = (err as NodeJS.ErrnoException).code;\n logger.error('oauth_callback_listen_failed', { port: requestedPort, errorCode: code });\n rejectStarted(code === 'EADDRINUSE' ? callbackPortInUseError(requestedPort, err) : err);\n };\n callbackServer.once('error', onStartError);\n\n // Start on fixed port (must match redirect_uri registered in Zendesk OAuth client)\n callbackServer.listen(requestedPort, () => {\n // Now that we're listening, a later server error must settle the *token*\n // flow (the started promise is already resolved) and tear the server down,\n // so the token store doesn't wedge waiting on a promise that never settles.\n callbackServer.off('error', onStartError);\n callbackServer.once('error', (err) => {\n clearTimeout(authTimeout);\n callbackServer.close();\n rejectToken(err);\n });\n\n const port = (callbackServer.address() as { port: number }).port;\n const redirectUri = `http://localhost:${port}/callback`;\n\n const params = new URLSearchParams({\n response_type: 'code',\n client_id: oauthClientId,\n redirect_uri: redirectUri,\n scope: 'read write',\n code_challenge: codeChallenge,\n code_challenge_method: 'S256',\n });\n\n const authUrl = `${authorizeBase}?${params.toString()}`;\n logger.debug('oauth_callback_listening', { port, redirectUri });\n logger.info('oauth_browser_opening');\n // Full authorize URL is debug-only: it carries the (public) client_id and\n // PKCE challenge — no secret — but stays out of default-level logs.\n logger.debug('oauth_authorize_url', { url: authUrl });\n // Always-on, ungated user-facing fallback: if the browser can't open, the\n // user must see this URL regardless of LOG_LEVEL — do NOT route it through\n // the (level-gated) logger.\n console.error(`Opening browser for Zendesk authentication...`);\n console.error(`If the browser doesn't open, visit: ${authUrl}`);\n\n open(authUrl)\n .then(() => {\n logger.debug('oauth_browser_opened');\n })\n .catch((err: unknown) => {\n // Do NOT swallow: this is the #60 signal. Capture why `open` failed\n // plus environment markers (presence only, never values).\n logger.error('oauth_browser_open_failed', {\n error: err instanceof Error ? err.message : String(err),\n errorCode: (err as NodeJS.ErrnoException | undefined)?.code,\n platform: process.platform,\n release: release(),\n isWsl: detectWsl(),\n hasSystemRoot: Boolean(process.env['SYSTEMROOT']),\n hasWindir: Boolean(process.env['WINDIR']),\n hasComSpec: Boolean(process.env['ComSpec']),\n hasPath: Boolean(process.env['PATH']),\n hasDisplay: Boolean(process.env['DISPLAY']),\n });\n });\n\n // Timeout after 5 minutes. Cleared on every completion path above so a\n // successful auth can't emit a spurious `oauth_timeout` error later.\n authTimeout = setTimeout(() => {\n logger.error('oauth_timeout', { timeoutMs: AUTH_TIMEOUT_MS });\n callbackServer.close();\n rejectToken(new Error('OAuth authentication timed out (5 min). Please try again.'));\n }, AUTH_TIMEOUT_MS);\n authTimeout.unref();\n\n resolveStarted({ authorizeUrl: authUrl, tokenPromise });\n });\n });\n};\n\n/**\n * Convenience wrapper that performs the full PKCE flow and resolves with the\n * token once the browser flow completes (blocking until then). Retained for\n * callers/tests that want the original \"await the token\" semantics.\n */\nexport const authenticateViaBrowser = async (\n config: BrowserOAuthConfig,\n logger: Logger = silentLogger,\n): Promise<TokenResult> => {\n const { tokenPromise } = await startBrowserAuth(config, logger);\n return tokenPromise;\n};\n\n/**\n * Exchange a refresh token for a fresh access token (and a rotated refresh token)\n * without any browser interaction. Public PKCE clients send no `client_secret`.\n * Zendesk refresh tokens are single-use: the caller MUST persist the new\n * `refresh_token` from the response. Throws on a non-2xx (expired/invalid\n * refresh token) so the caller can fall back to the full browser flow.\n */\nexport const refreshAccessToken = async (\n config: { subdomain: string; oauthClientId: string; refreshToken: string },\n logger: Logger = silentLogger,\n): Promise<TokenResult> => {\n const { tokenUrl } = getOAuthUrls(config.subdomain);\n\n const body = new URLSearchParams({\n grant_type: 'refresh_token',\n refresh_token: config.refreshToken,\n client_id: config.oauthClientId,\n });\n\n const response = await fetch(tokenUrl, {\n method: 'POST',\n headers: { 'Content-Type': 'application/x-www-form-urlencoded' },\n body: body.toString(),\n });\n\n logger.debug('oauth_token_refresh', { status: response.status });\n\n if (!response.ok) {\n const errorBody = await response.text();\n throw new Error(`Token refresh failed (${response.status}): ${errorBody}`);\n }\n\n const tokenData = (await response.json()) as TokenResult;\n logger.info('oauth_token_refreshed');\n return tokenData;\n};\n","import { readFileSync } from 'node:fs';\nimport { dirname, join } from 'node:path';\nimport { fileURLToPath } from 'node:url';\n\nexport interface PackageInfo {\n name: string;\n version: string;\n}\n\n// Used only if package.json can't be located/parsed (should not happen in a\n// published install). Keeps the server bootable rather than throwing.\nconst FALLBACK: PackageInfo = {\n name: '@fruggr/zendesk-mcp-server',\n version: '0.0.0',\n};\n\n/**\n * Read `name`/`version` from the package's own package.json at runtime instead\n * of hardcoding them. Walks up from this module to the nearest package.json,\n * which resolves correctly both when bundled (`dist/index.js` → repo root) and\n * from source/tests (`src/` has no package.json, so the root is found). Reading\n * at runtime (not inlining at build) matters because semantic-release bumps the\n * version into package.json before publishing, after the build step.\n */\n// package.json can't change during the process lifetime, and createMcpServer\n// (hence this) may run several times (notably across tests) — cache the result.\nlet cached: PackageInfo | undefined;\n\nexport const readPackageInfo = (): PackageInfo => {\n if (cached) return cached;\n // Only readFileSync/JSON.parse can throw here (caught per-iteration below);\n // fileURLToPath/dirname/join don't, so no outer guard is needed.\n let dir = dirname(fileURLToPath(import.meta.url));\n for (let depth = 0; depth < 8; depth++) {\n try {\n // JSON.parse yields `unknown`; validate at runtime rather than asserting.\n const raw: unknown = JSON.parse(readFileSync(join(dir, 'package.json'), 'utf8'));\n if (raw && typeof raw === 'object') {\n const pkg = raw as Partial<PackageInfo>;\n if (typeof pkg.name === 'string' && typeof pkg.version === 'string') {\n cached = { name: pkg.name, version: pkg.version };\n return cached;\n }\n }\n } catch {\n // No readable/valid package.json here — keep walking up.\n }\n const parent = dirname(dir);\n if (parent === dir) break;\n dir = parent;\n }\n cached = FALLBACK;\n return cached;\n};\n","import { chmodSync, mkdirSync, readFileSync, renameSync, rmSync, writeFileSync } from 'node:fs';\nimport { homedir } from 'node:os';\nimport { dirname, join } from 'node:path';\nimport { type Logger, silentLogger } from '../utils/logger';\nimport { readPackageInfo } from '../utils/package-info';\n\n/**\n * On-disk OAuth token record. `expiresAt` is an absolute epoch-ms timestamp\n * (derived from the OAuth `expires_in`) so expiry survives restarts; `undefined`\n * means a non-expiring token (Zendesk's default until expiration is enabled).\n */\nexport interface PersistedToken {\n accessToken: string;\n refreshToken?: string | undefined;\n expiresAt?: number | undefined;\n}\n\nconst isWindows = process.platform === 'win32';\n\n/**\n * Config-dir segments derived from the *scoped* package name\n * (`@fruggr/zendesk-mcp-server` → `fruggr` + `zendesk-mcp-server`) so the path is\n * vendor-namespaced and can't collide with another `zendesk-mcp-server`.\n */\nconst appDirSegments = (): string[] => {\n const { name } = readPackageInfo();\n const scoped = /^@([^/]+)\\/(.+)$/.exec(name);\n return scoped?.[1] && scoped[2] ? [scoped[1], scoped[2]] : [name];\n};\n\n// OS config dir holding the per-subdomain token files: `%APPDATA%` on Windows,\n// `$XDG_CONFIG_HOME` (falling back to `~/.config`) elsewhere.\nconst configDir = (): string => {\n const segments = appDirSegments();\n if (isWindows) {\n const base = process.env['APPDATA'] ?? join(homedir(), 'AppData', 'Roaming');\n return join(base, ...segments);\n }\n const base = process.env['XDG_CONFIG_HOME'] ?? join(homedir(), '.config');\n return join(base, ...segments);\n};\n\n// Zendesk subdomains are [a-z0-9-]; sanitize defensively so a crafted value\n// can neither escape the config dir nor smuggle a path separator.\nconst safeName = (subdomain: string): string => subdomain.replace(/[^a-z0-9-]/gi, '_');\n\n/**\n * Path to the token file for a subdomain. Each subdomain gets its **own** file\n * (`<subdomain>.json`, a single record) so concurrent processes for different\n * subdomains never read-modify-write a shared file — no merge, no clobber.\n * `ZENDESK_TOKEN_FILE` overrides with an explicit path (a single file; use the\n * default layout for multi-subdomain installs).\n */\nexport const resolveTokenPath = (subdomain: string): string => {\n const override = process.env['ZENDESK_TOKEN_FILE'];\n if (override) return override;\n return join(configDir(), `${safeName(subdomain)}.json`);\n};\n\n// Atomic write (tmp + rename) so a crash mid-write can't leave a truncated file,\n// with owner-only perms on the file and its dir where the OS supports it.\nconst writeFileAtomic = (path: string, record: PersistedToken): void => {\n const dir = dirname(path);\n mkdirSync(dir, { recursive: true });\n const tmp = `${path}.${process.pid}.tmp`;\n writeFileSync(tmp, JSON.stringify(record, null, 2), 'utf8');\n if (!isWindows) chmodSync(tmp, 0o600);\n renameSync(tmp, path);\n if (!isWindows) {\n try {\n chmodSync(dir, 0o700);\n } catch {\n // Best-effort: tightening the dir is a bonus, not a requirement.\n }\n }\n};\n\n// A missing file or unparseable/garbage content is treated as \"no token yet\"\n// rather than an error: persistence must never wedge the auth flow.\nexport const loadToken = (path: string): PersistedToken | undefined => {\n try {\n const raw: unknown = JSON.parse(readFileSync(path, 'utf8'));\n if (raw && typeof raw === 'object' && typeof (raw as PersistedToken).accessToken === 'string') {\n return raw as PersistedToken;\n }\n } catch {\n // absent or corrupt → no token\n }\n return undefined;\n};\n\nexport const saveToken = (\n path: string,\n record: PersistedToken,\n logger: Logger = silentLogger,\n): void => {\n try {\n writeFileAtomic(path, record);\n logger.debug('token_persisted');\n } catch (err) {\n // Never fail the auth flow because the token couldn't be cached to disk.\n logger.warn('token_persist_failed', {\n error: err instanceof Error ? err.message : String(err),\n });\n }\n};\n\nexport const clearToken = (path: string, logger: Logger = silentLogger): void => {\n try {\n rmSync(path, { force: true });\n logger.debug('token_cleared');\n } catch (err) {\n logger.warn('token_clear_failed', {\n error: err instanceof Error ? err.message : String(err),\n });\n }\n};\n","import { type Logger, silentLogger } from '../utils/logger';\nimport { refreshAccessToken, startBrowserAuth } from './browser-oauth';\nimport {\n clearToken as clearPersistedToken,\n loadToken,\n type PersistedToken,\n resolveTokenPath,\n saveToken,\n} from './token-persistence';\n\ntype StoredToken = PersistedToken;\n\n// Refresh slightly before the real expiry so a request never races a token that\n// dies in flight.\nconst EXPIRY_SKEW_MS = 60_000;\n\n/**\n * Signals that interactive sign-in is required. The message is user-facing: MCP\n * surfaces it as the tool-call error text, so it carries the authorize URL and\n * tells the user to authenticate and retry. Kept as an Error factory (not a\n * class) to match the repo's functional style.\n */\nexport type AuthRequiredError = Error & { readonly authorizeUrl: string };\n\nexport const createAuthRequiredError = (authorizeUrl: string): AuthRequiredError =>\n Object.assign(\n new Error(\n 'Zendesk authentication required. A browser window should have opened for you to sign in. ' +\n 'If it did not, open this URL in your browser, then retry your request:\\n' +\n authorizeUrl,\n ),\n { name: 'AuthRequiredError', authorizeUrl } as const,\n );\n\nexport const isAuthRequiredError = (err: unknown): err is AuthRequiredError =>\n err instanceof Error &&\n err.name === 'AuthRequiredError' &&\n typeof (err as AuthRequiredError).authorizeUrl === 'string';\n\n// Compute the absolute expiry (epoch ms) from an OAuth `expires_in` (seconds),\n// or `undefined` for a non-expiring token.\nconst expiryFrom = (expiresIn: number | undefined): number | undefined =>\n typeof expiresIn === 'number' ? Date.now() + expiresIn * 1000 : undefined;\n\nexport const createTokenStore = (\n config: { subdomain: string; oauthClientId: string; callbackPort?: number | undefined },\n logger: Logger = silentLogger,\n) => {\n const tokenPath = resolveTokenPath(config.subdomain);\n // Seed the in-memory cache from disk so a restart (notably the Cowork-on-Windows\n // process churn) reuses the existing token instead of re-prompting.\n let token: StoredToken | undefined = loadToken(tokenPath);\n if (token) logger.debug('oauth_token_loaded_from_disk');\n\n // The authorize URL of the in-flight flow (set once the callback server is\n // listening); `undefined` means no flow is currently pending.\n let authorizeUrl: string | undefined;\n // Resolves to the authorize URL while a flow is being started; guards against\n // launching multiple browser flows for concurrent first calls.\n let starting: Promise<string> | undefined;\n // De-dupes concurrent refresh attempts so a burst of expired-token calls\n // triggers a single network round-trip.\n let refreshing: Promise<string | undefined> | undefined;\n\n const persist = (t: StoredToken): void => saveToken(tokenPath, t, logger);\n\n const setToken = (accessToken: string, refreshToken?: string | undefined) => {\n token = { accessToken, refreshToken };\n persist(token);\n };\n\n const isExpired = (t: StoredToken): boolean =>\n typeof t.expiresAt === 'number' && Date.now() >= t.expiresAt - EXPIRY_SKEW_MS;\n\n // Try to silently mint a fresh access token from the stored refresh token.\n // Resolves to the new access token, or `undefined` if there's nothing to\n // refresh / the refresh failed (in which case the dead token is dropped).\n const tryRefresh = async (current: StoredToken): Promise<string | undefined> => {\n if (!current.refreshToken) return undefined;\n try {\n const result = await refreshAccessToken(\n {\n subdomain: config.subdomain,\n oauthClientId: config.oauthClientId,\n refreshToken: current.refreshToken,\n },\n logger,\n );\n // Zendesk rotates the refresh token on every use — persist the new one (or\n // keep the current one if the response omitted it).\n token = {\n accessToken: result.access_token,\n refreshToken: result.refresh_token ?? current.refreshToken,\n expiresAt: expiryFrom(result.expires_in),\n };\n persist(token);\n logger.info('oauth_token_refreshed_cached');\n return token.accessToken;\n } catch (err) {\n logger.warn('oauth_token_refresh_failed', {\n error: err instanceof Error ? err.message : String(err),\n });\n // Refresh token expired/invalid → drop it so we fall back to a fresh flow.\n token = undefined;\n clearPersistedToken(tokenPath, logger);\n return undefined;\n }\n };\n\n const beginAuth = (): Promise<string> => {\n logger.info('oauth_auth_start');\n return startBrowserAuth(\n {\n subdomain: config.subdomain,\n oauthClientId: config.oauthClientId,\n callbackPort: config.callbackPort,\n },\n logger,\n )\n .then((started) => {\n authorizeUrl = started.authorizeUrl;\n started.tokenPromise\n .then((result) => {\n token = {\n accessToken: result.access_token,\n refreshToken: result.refresh_token,\n expiresAt: expiryFrom(result.expires_in),\n };\n persist(token);\n logger.info('oauth_token_cached');\n })\n .catch((err) => {\n logger.warn('oauth_auth_failed', {\n error: err instanceof Error ? err.message : String(err),\n });\n })\n .finally(() => {\n // Let the next call start a fresh flow: on success the cached token\n // short-circuits anyway; on failure/timeout we want a clean retry.\n starting = undefined;\n authorizeUrl = undefined;\n });\n return started.authorizeUrl;\n })\n .catch((err) => {\n // The callback server couldn't even start listening (e.g. port in use).\n // Reset so a later call can retry, and surface the underlying error.\n starting = undefined;\n throw err;\n });\n };\n\n const getToken = async (): Promise<string> => {\n if (token && !isExpired(token)) {\n logger.debug('oauth_token_cache_hit');\n return token.accessToken;\n }\n\n // Expired (or near-expiry) but refreshable → refresh silently before falling\n // back to a browser prompt. Concurrent callers share the one attempt.\n if (token?.refreshToken) {\n if (!refreshing) {\n refreshing = tryRefresh(token).finally(() => {\n refreshing = undefined;\n });\n }\n const refreshed = await refreshing;\n if (refreshed) return refreshed;\n }\n\n if (!starting) {\n starting = beginAuth();\n }\n\n // Fail fast: don't hold the tool call open for the whole browser flow.\n // Surface the authorize URL so the user can sign in, then retry — the\n // callback server keeps running in the background and caches the token,\n // so the next call succeeds.\n const url = authorizeUrl ?? (await starting);\n throw createAuthRequiredError(url);\n };\n\n // Backstop for an access token the server rejected mid-life (e.g. revoked).\n // A 401 invalidates the *access* token, not necessarily the refresh token —\n // so keep the latter and just mark the access token expired, letting the next\n // getToken attempt a silent refresh before falling back to the browser. Only\n // when there's no refresh token do we wipe the record entirely.\n const invalidate = (): void => {\n if (token?.refreshToken) {\n token = { accessToken: token.accessToken, refreshToken: token.refreshToken, expiresAt: 0 };\n persist(token);\n } else {\n token = undefined;\n clearPersistedToken(tokenPath, logger);\n }\n logger.info('oauth_token_invalidated');\n };\n\n return { getToken, setToken, invalidate };\n};\n","import * as z from 'zod/v4';\n\nexport const ToolMode = z.enum(['single', 'namespace', 'all']);\nexport type ToolMode = z.infer<typeof ToolMode>;\n\nexport const LogLevel = z.enum(['debug', 'info', 'warn', 'error']);\nexport type LogLevel = z.infer<typeof LogLevel>;\n\nexport const Namespace = z.enum(['tickets', 'help_center', 'users']);\nexport type Namespace = z.infer<typeof Namespace>;\n\nexport const ConfigSchema = z.object({\n subdomain: z.string().min(1, 'ZENDESK_SUBDOMAIN is required'),\n oauthClientId: z.string().min(1),\n zendeskEmail: z.string().optional(),\n zendeskApiToken: z.string().optional(),\n logLevel: LogLevel,\n mode: ToolMode,\n readOnly: z.boolean(),\n namespaces: z.array(Namespace).optional(),\n tools: z.array(z.string()).optional(),\n callbackPort: z.number().int().min(1).max(65535).optional(),\n});\n\nexport type Config = z.infer<typeof ConfigSchema>;\n\ninterface CliResult {\n subdomain?: string;\n mode?: string;\n readOnly?: boolean;\n namespaces?: string[];\n tools?: string[];\n logLevel?: string;\n callbackPort?: number;\n}\n\nconst parseCliArgs = (args: string[]): CliResult => {\n const result: CliResult = {};\n let positionalIndex = 0;\n\n for (let i = 0; i < args.length; i++) {\n const arg = args[i];\n if (arg === undefined) continue;\n const next = args[i + 1];\n\n if (arg === '--mode' && next) {\n result.mode = next;\n i++;\n } else if (arg === '--read-only') {\n result.readOnly = true;\n } else if (arg === '--namespace' && next) {\n result.namespaces = result.namespaces ?? [];\n result.namespaces.push(next);\n i++;\n } else if (arg === '--tool' && next) {\n result.tools = result.tools ?? [];\n result.tools.push(next);\n i++;\n } else if (arg === '--log-level' && next) {\n result.logLevel = next;\n i++;\n } else if (arg === '--callback-port' && next) {\n result.callbackPort = Number(next);\n i++;\n } else if (!arg.startsWith('-') && positionalIndex === 0) {\n result.subdomain = arg;\n positionalIndex++;\n }\n }\n\n return result;\n};\n\nexport const loadConfig = (argv: string[] = process.argv.slice(2)): Config => {\n const cli = parseCliArgs(argv);\n\n const subdomain = cli.subdomain ?? process.env['ZENDESK_SUBDOMAIN'] ?? '';\n const oauthClientId =\n process.env['ZENDESK_OAUTH_CLIENT_ID'] ?? (subdomain ? `${subdomain}_zendesk` : '');\n\n const mode = cli.tools?.length ? 'all' : (cli.mode ?? 'namespace');\n\n const envCallbackPort = process.env['ZENDESK_OAUTH_CALLBACK_PORT'];\n const callbackPort = cli.callbackPort ?? (envCallbackPort ? Number(envCallbackPort) : undefined);\n\n return ConfigSchema.parse({\n subdomain,\n oauthClientId,\n zendeskEmail: process.env['ZENDESK_EMAIL'],\n zendeskApiToken: process.env['ZENDESK_API_TOKEN'],\n logLevel: cli.logLevel ?? process.env['LOG_LEVEL'] ?? 'info',\n mode,\n readOnly: cli.readOnly ?? false,\n namespaces: cli.namespaces,\n tools: cli.tools,\n callbackPort,\n });\n};\n","import { getBaseUrl, getHelpCenterBaseUrl } from '../constants.js';\n\nexport class ZendeskApiError extends Error {\n constructor(\n public readonly status: number,\n public readonly statusText: string,\n public readonly body: string,\n ) {\n super(ZendeskApiError.buildMessage(status, statusText, body));\n this.name = 'ZendeskApiError';\n }\n\n private static buildMessage(status: number, statusText: string, body: string): string {\n switch (status) {\n case 401:\n return 'Authentication failed. Your Zendesk token may be expired or invalid. Re-authenticate to get a new token.';\n case 403:\n return 'Permission denied. Your Zendesk account does not have access to this resource.';\n case 404:\n return `Resource not found. Please verify the ID is correct. (${statusText})`;\n case 422:\n return `Validation error: ${body}`;\n case 429:\n return 'Rate limit exceeded. Please wait before making more requests.';\n default:\n return `Zendesk API error ${status}: ${statusText}. ${body}`;\n }\n }\n}\n\nexport interface ZendeskRequestOptions {\n method?: 'GET' | 'POST' | 'PUT' | 'DELETE';\n body?: unknown;\n params?: Record<string, string>;\n}\n\n// token is either a Bearer OAuth token or a \"Basic xxx\" string (stdio API token mode)\nconst buildAuthHeader = (token: string): string =>\n token.startsWith('Basic ') ? token : `Bearer ${token}`;\n\nconst buildUrl = (base: string, path: string, params?: Record<string, string>): string => {\n const url = new URL(`${base}${path}`);\n if (params) {\n for (const [key, value] of Object.entries(params)) {\n url.searchParams.set(key, value);\n }\n }\n return url.toString();\n};\n\nconst executeRequest = async <T>(\n url: string,\n token: string,\n options: ZendeskRequestOptions = {},\n): Promise<T> => {\n const { method = 'GET', body } = options;\n\n const headers: Record<string, string> = {\n Authorization: buildAuthHeader(token),\n Accept: 'application/json',\n };\n\n if (body) {\n headers['Content-Type'] = 'application/json';\n }\n\n const init: RequestInit = { method, headers };\n if (body) {\n init.body = JSON.stringify(body);\n }\n\n const response = await fetch(url, init);\n\n if (!response.ok) {\n const responseBody = await response.text();\n throw new ZendeskApiError(response.status, response.statusText, responseBody);\n }\n\n if (response.status === 204) {\n return {} as T;\n }\n\n return response.json() as Promise<T>;\n};\n\nexport const zendeskGet = <T>(\n subdomain: string,\n token: string,\n path: string,\n params?: Record<string, string>,\n): Promise<T> => {\n const url = buildUrl(getBaseUrl(subdomain), path, params);\n return executeRequest<T>(url, token);\n};\n\nexport const zendeskPost = <T>(\n subdomain: string,\n token: string,\n path: string,\n body: unknown,\n): Promise<T> => {\n const url = buildUrl(getBaseUrl(subdomain), path);\n return executeRequest<T>(url, token, { method: 'POST', body });\n};\n\nexport const zendeskPut = <T>(\n subdomain: string,\n token: string,\n path: string,\n body: unknown,\n): Promise<T> => {\n const url = buildUrl(getBaseUrl(subdomain), path);\n return executeRequest<T>(url, token, { method: 'PUT', body });\n};\n\nexport const helpCenterGet = <T>(\n subdomain: string,\n token: string,\n path: string,\n params?: Record<string, string>,\n): Promise<T> => {\n const url = buildUrl(getHelpCenterBaseUrl(subdomain), path, params);\n return executeRequest<T>(url, token);\n};\n\nexport const helpCenterPost = <T>(\n subdomain: string,\n token: string,\n path: string,\n body: unknown,\n): Promise<T> => {\n const url = buildUrl(getHelpCenterBaseUrl(subdomain), path);\n return executeRequest<T>(url, token, { method: 'POST', body });\n};\n\nexport const helpCenterPut = <T>(\n subdomain: string,\n token: string,\n path: string,\n body: unknown,\n): Promise<T> => {\n const url = buildUrl(getHelpCenterBaseUrl(subdomain), path);\n return executeRequest<T>(url, token, { method: 'PUT', body });\n};\n\nexport const fetchZendeskBinary = async (\n subdomain: string,\n token: string,\n contentUrl: string,\n): Promise<{ data: Buffer; contentType: string }> => {\n const expectedHost = `${subdomain}.zendesk.com`;\n const headers: Record<string, string> = {};\n if (new URL(contentUrl).hostname === expectedHost) {\n headers['Authorization'] = buildAuthHeader(token);\n }\n const response = await fetch(contentUrl, { headers });\n if (!response.ok) {\n const body = await response.text();\n throw new ZendeskApiError(response.status, response.statusText, body);\n }\n const contentType = response.headers.get('content-type') ?? 'application/octet-stream';\n const arrayBuffer = await response.arrayBuffer();\n return { data: Buffer.from(arrayBuffer), contentType };\n};\n\nexport const helpCenterUpload = async <T>(\n subdomain: string,\n token: string,\n path: string,\n formData: FormData,\n): Promise<T> => {\n const url = buildUrl(getHelpCenterBaseUrl(subdomain), path);\n const response = await fetch(url, {\n method: 'POST',\n headers: { Authorization: buildAuthHeader(token) },\n body: formData,\n });\n\n if (!response.ok) {\n const responseBody = await response.text();\n throw new ZendeskApiError(response.status, response.statusText, responseBody);\n }\n\n return response.json() as Promise<T>;\n};\n","import type { Namespace } from '../config';\nimport type { ToolDefinition } from '../tools/definitions';\n\nexport interface FilterOptions {\n readOnly: boolean;\n namespaces?: Namespace[] | undefined;\n tools?: string[] | undefined;\n}\n\nexport const filterTools = (allTools: ToolDefinition[], options: FilterOptions): ToolDefinition[] =>\n allTools.filter((tool) => {\n if (options.readOnly && !tool.readOnly) return false;\n if (options.namespaces?.length && !options.namespaces.includes(tool.namespace)) return false;\n if (options.tools?.length && !options.tools.includes(tool.name)) return false;\n return true;\n });\n\nexport const groupByNamespace = (tools: ToolDefinition[]): Map<string, ToolDefinition[]> => {\n const grouped = new Map<string, ToolDefinition[]>();\n for (const tool of tools) {\n const existing = grouped.get(tool.namespace) ?? [];\n existing.push(tool);\n grouped.set(tool.namespace, existing);\n }\n return grouped;\n};\n","import * as cheerio from 'cheerio';\nimport type { Element } from 'hast';\nimport { toHtml } from 'hast-util-to-html';\nimport type { Handle } from 'hast-util-to-mdast';\nimport rehypeParse from 'rehype-parse';\nimport rehypeRaw from 'rehype-raw';\nimport rehypeRemark from 'rehype-remark';\nimport rehypeStringify from 'rehype-stringify';\nimport remarkGfm from 'remark-gfm';\nimport remarkParse from 'remark-parse';\nimport remarkRehype from 'remark-rehype';\nimport remarkStringify from 'remark-stringify';\nimport { unified } from 'unified';\n\nexport interface Section {\n index: number;\n heading: string;\n headingTag: string;\n level: number;\n html: string;\n wordCount: number;\n}\n\nconst HEADING_LEVELS = new Set(['h1', 'h2', 'h3']);\n\nconst countWords = (text: string): number => {\n const trimmed = text.trim();\n if (!trimmed) return 0;\n return trimmed.split(/\\s+/).length;\n};\n\nconst textOf = (html: string): string => {\n if (!html) return '';\n const $ = cheerio.load(`<div>${html}</div>`, null, false);\n return $('div').first().text();\n};\n\nexport const parseSections = (html: string): Section[] => {\n if (!html?.trim()) return [];\n\n const $ = cheerio.load(html, null, false);\n const children = $.root().contents().toArray();\n\n const introParts: string[] = [];\n const sections: Array<{\n heading: string;\n headingTag: string;\n level: number;\n contentParts: string[];\n }> = [];\n let current: (typeof sections)[number] | null = null;\n\n for (const node of children) {\n const tagName = node.type === 'tag' ? node.name.toLowerCase() : '';\n\n if (HEADING_LEVELS.has(tagName)) {\n const level = Number.parseInt(tagName.slice(1), 10);\n current = {\n heading: $(node).text().trim(),\n headingTag: tagName,\n level,\n contentParts: [],\n };\n sections.push(current);\n continue;\n }\n\n const outer = $.html(node);\n if (current) {\n current.contentParts.push(outer);\n } else {\n introParts.push(outer);\n }\n }\n\n const result: Section[] = [];\n\n if (introParts.length > 0) {\n const introHtml = introParts.join('');\n result.push({\n index: 0,\n heading: 'intro',\n headingTag: '',\n level: 0,\n html: introHtml,\n wordCount: countWords(textOf(introHtml)),\n });\n }\n\n for (const s of sections) {\n const sectionHtml = s.contentParts.join('');\n result.push({\n index: result.length,\n heading: s.heading,\n headingTag: s.headingTag,\n level: s.level,\n html: sectionHtml,\n wordCount: countWords(textOf(sectionHtml)),\n });\n }\n\n return result;\n};\n\nexport const replaceSectionContent = (\n html: string,\n sectionIndex: number,\n newHtml: string,\n): string => {\n const sections = parseSections(html);\n if (sectionIndex < 0 || sectionIndex >= sections.length) {\n throw new Error(\n `Section index ${sectionIndex} out of range (valid: 0-${Math.max(0, sections.length - 1)})`,\n );\n }\n\n return sections\n .map((section, idx) => {\n const content = idx === sectionIndex ? newHtml : section.html;\n if (section.level === 0) return content;\n return `<${section.headingTag}>${section.heading}</${section.headingTag}>${content}`;\n })\n .join('');\n};\n\n// Keep structural HTML that markdown flattens lossily: <pre> with inline <br>\n// collapses to a single line, and <table> cells with multiple <p> break GFM\n// pipe tables. Leaving them as raw HTML is safer for round-trip.\nconst keepAsHtml: Handle = (_state, node) => ({\n type: 'html',\n value: toHtml(node as Element),\n});\n\nconst htmlToMdProcessor = unified()\n .use(rehypeParse, { fragment: true })\n .use(rehypeRemark, { handlers: { table: keepAsHtml, pre: keepAsHtml } })\n .use(remarkGfm)\n .use(remarkStringify, { bullet: '-', emphasis: '_', fences: true });\n\nconst mdToHtmlProcessor = unified()\n .use(remarkParse)\n .use(remarkGfm)\n .use(remarkRehype, { allowDangerousHtml: true })\n .use(rehypeRaw)\n .use(rehypeStringify);\n\nexport const htmlToMarkdown = (html: string): string => {\n if (!html) return '';\n return String(htmlToMdProcessor.processSync(html));\n};\n\nexport const markdownToHtml = (markdown: string): string => {\n if (!markdown) return '';\n return String(mdToHtmlProcessor.processSync(markdown));\n};\n","import { CHARACTER_LIMIT } from '../constants.js';\nimport type {\n PaginationMeta,\n ZendeskArticle,\n ZendeskArticleAttachment,\n ZendeskCategory,\n ZendeskComment,\n ZendeskContentTag,\n ZendeskLabel,\n ZendeskOrganization,\n ZendeskPermissionGroup,\n ZendeskSection,\n ZendeskTicket,\n ZendeskTranslation,\n ZendeskUser,\n ZendeskUserSegment,\n} from '../types.js';\n\nexport const truncateIfNeeded = (text: string): string => {\n if (text.length <= CHARACTER_LIMIT) return text;\n return `${text.slice(0, CHARACTER_LIMIT)}\\n\\n--- Response truncated (${text.length} chars, limit ${CHARACTER_LIMIT}). Use pagination or filters to reduce results. ---`;\n};\n\nconst formatPagination = (meta: PaginationMeta): string => {\n const parts = [`Results: ${meta.count}`];\n if (meta.has_more) {\n parts.push(`More available (cursor: ${meta.after_cursor})`);\n }\n return parts.join(' | ');\n};\n\nexport const formatTicket = (ticket: ZendeskTicket): string =>\n [\n `## Ticket #${ticket.id}: ${ticket.subject}`,\n `- **Status**: ${ticket.status} | **Priority**: ${ticket.priority ?? 'none'} | **Type**: ${ticket.type ?? 'none'}`,\n `- **Requester**: ${ticket.requester_id} | **Assignee**: ${ticket.assignee_id ?? 'unassigned'}`,\n `- **Tags**: ${ticket.tags.length > 0 ? ticket.tags.join(', ') : 'none'}`,\n `- **Created**: ${ticket.created_at} | **Updated**: ${ticket.updated_at}`,\n ticket.description ? `\\n${ticket.description}` : '',\n ]\n .filter(Boolean)\n .join('\\n');\n\nexport const formatComment = (comment: ZendeskComment): string => {\n const lines = [\n `### ${comment.public ? 'Public comment' : 'Internal note'} by ${comment.author_id}`,\n `*${comment.created_at}*`,\n ];\n if (comment.attachments?.length) {\n const summary = comment.attachments.map((a) => `#${a.id} (${a.content_type})`).join(', ');\n lines.push(`Attachments: ${summary}`);\n }\n lines.push('', comment.body);\n return lines.join('\\n');\n};\n\nexport const formatUser = (user: ZendeskUser): string =>\n [\n `## ${user.name} (${user.id})`,\n `- **Email**: ${user.email}`,\n `- **Role**: ${user.role}`,\n user.role_type != null ? `- **Role type**: ${user.role_type}` : '',\n `- **Active**: ${user.active}`,\n user.organization_id ? `- **Organization**: ${user.organization_id}` : '',\n ]\n .filter(Boolean)\n .join('\\n');\n\nexport const formatOrganization = (org: ZendeskOrganization): string =>\n [\n `## ${org.name} (${org.id})`,\n org.details ? `- **Details**: ${org.details}` : '',\n org.domain_names.length > 0 ? `- **Domains**: ${org.domain_names.join(', ')}` : '',\n org.tags.length > 0 ? `- **Tags**: ${org.tags.join(', ')}` : '',\n ]\n .filter(Boolean)\n .join('\\n');\n\nexport const formatArticleSummary = (article: ZendeskArticle): string =>\n [\n `## ${article.title} (${article.id})`,\n `- **Locale**: ${article.locale} | **Source locale**: ${article.source_locale}`,\n `- **Section**: ${article.section_id} | **Draft**: ${article.draft}`,\n typeof article.position === 'number' ? `- **Position**: ${article.position}` : '',\n article.label_names.length > 0 ? `- **Labels**: ${article.label_names.join(', ')}` : '',\n `- **Created**: ${article.created_at} | **Updated**: ${article.updated_at}`,\n ]\n .filter(Boolean)\n .join('\\n');\n\nexport const formatArticle = (article: ZendeskArticle): string =>\n [formatArticleSummary(article), '', article.body].join('\\n');\n\nexport const formatTranslationSummary = (translation: ZendeskTranslation): string =>\n [\n `## Translation: ${translation.locale} (${translation.id})`,\n `- **Title**: ${translation.title}`,\n `- **Draft**: ${translation.draft}`,\n `- **Updated**: ${translation.updated_at}`,\n ].join('\\n');\n\nexport const formatTranslation = (translation: ZendeskTranslation): string =>\n [formatTranslationSummary(translation), '', translation.body].join('\\n');\n\nexport const formatCategory = (category: ZendeskCategory): string =>\n `- **${category.name}** (${category.id}) — ${category.description || 'No description'}`;\n\nexport const formatSection = (section: ZendeskSection): string =>\n `- **${section.name}** (${section.id}) — Category: ${section.category_id} — ${section.description || 'No description'}`;\n\nexport const formatPermissionGroup = (group: ZendeskPermissionGroup): string =>\n `- **${group.name}** (${group.id})${group.built_in ? ' — Built-in' : ''}`;\n\nexport const formatContentTag = (tag: ZendeskContentTag): string => `- **${tag.name}** (${tag.id})`;\n\nexport const formatLabel = (label: ZendeskLabel): string => `- **${label.name}** (${label.id})`;\n\nexport const formatUserSegment = (segment: ZendeskUserSegment): string =>\n `- **${segment.name}** (${segment.id}) — ${segment.user_type}${segment.built_in ? ' — Built-in' : ''}`;\n\nexport const formatAttachment = (attachment: ZendeskArticleAttachment): string =>\n `- **${attachment.file_name}** (${attachment.id}) — ${attachment.content_type} — ${attachment.size} bytes`;\n\nexport const formatList = <T>(\n items: T[],\n formatter: (item: T) => string,\n meta?: PaginationMeta,\n): string => {\n const header = meta ? formatPagination(meta) : '';\n const body = items.map(formatter).join('\\n\\n');\n const text = [header, body].filter(Boolean).join('\\n\\n');\n return truncateIfNeeded(text);\n};\n","import type { PaginationMeta, ZendeskListResponse } from '../types';\n\n// Cursor-based pagination (for list endpoints: /tickets, /organizations, etc.)\nexport const buildCursorParams = (pageSize: number, cursor?: string): Record<string, string> => {\n const params: Record<string, string> = {\n 'page[size]': String(pageSize),\n };\n if (cursor) {\n params['page[after]'] = cursor;\n }\n return params;\n};\n\n// Offset-based pagination (for search endpoints: /search, /help_center/articles/search)\nexport const buildOffsetParams = (perPage: number, page?: number): Record<string, string> => {\n const params: Record<string, string> = {\n per_page: String(perPage),\n };\n if (page && page > 1) {\n params['page'] = String(page);\n }\n return params;\n};\n\nexport const extractPaginationMeta = <T>(response: ZendeskListResponse<T>): PaginationMeta => ({\n has_more: response.meta?.has_more ?? response.next_page != null,\n after_cursor: response.meta?.after_cursor ?? null,\n count: response.count ?? 0,\n});\n\n// For search responses — offset-based, count is always present\nexport const extractSearchPaginationMeta = <T>(\n response: ZendeskListResponse<T>,\n perPage: number,\n page: number,\n): PaginationMeta => {\n const count = response.count ?? 0;\n const has_more = count > page * perPage;\n return {\n has_more,\n after_cursor: has_more ? String(page + 1) : null,\n count,\n };\n};\n","import * as z from 'zod/v4';\nimport {\n helpCenterGet,\n helpCenterPost,\n helpCenterPut,\n helpCenterUpload,\n zendeskGet,\n zendeskPost,\n} from '../client/zendesk-api';\nimport {\n DEFAULT_PAGE_SIZE,\n LARGE_ARTICLE_BODY_CHARS,\n LARGE_ARTICLE_SECTION_COUNT,\n MAX_PAGE_SIZE,\n} from '../constants';\nimport type {\n ZendeskArticle,\n ZendeskArticleAttachment,\n ZendeskCategory,\n ZendeskContentTag,\n ZendeskLabel,\n ZendeskListResponse,\n ZendeskPermissionGroup,\n ZendeskSection,\n ZendeskTranslation,\n ZendeskUserSegment,\n} from '../types';\nimport {\n htmlToMarkdown,\n markdownToHtml,\n parseSections,\n replaceSectionContent,\n} from '../utils/article-sections';\nimport {\n formatArticle,\n formatArticleSummary,\n formatAttachment,\n formatCategory,\n formatContentTag,\n formatLabel,\n formatList,\n formatPermissionGroup,\n formatSection,\n formatTranslation,\n formatTranslationSummary,\n formatUserSegment,\n truncateIfNeeded,\n} from '../utils/formatting';\nimport {\n buildCursorParams,\n buildOffsetParams,\n extractPaginationMeta,\n extractSearchPaginationMeta,\n} from '../utils/pagination';\nimport type { ToolContext, ToolDefinition } from './definitions';\n\nconst largeArticleHint = (body: string, sectionCount: number): string | null => {\n if (body.length < LARGE_ARTICLE_BODY_CHARS && sectionCount < LARGE_ARTICLE_SECTION_COUNT) {\n return null;\n }\n return [\n `> ⚠ Large article (${body.length} chars, ${sectionCount} sections).`,\n '> For targeted edits, prefer get_article_outline + get_article_section +',\n '> update_article_section to avoid re-sending the full body on each write.',\n '',\n ].join('\\n');\n};\n\nexport const createHelpCenterTools = (ctx: ToolContext): ToolDefinition[] => {\n const { subdomain, getToken } = ctx;\n\n return [\n {\n name: 'search_articles',\n namespace: 'help_center',\n readOnly: true,\n title: 'Search Help Center Articles',\n description:\n 'Full-text search across Help Center articles (metadata only, no body). Use get_article for full content. Supports locale filtering. Returns total count.',\n inputSchema: z.object({\n query: z.string().min(1).describe('Search query'),\n locale: z.string().optional().describe('Filter by locale (e.g., \"en-us\", \"fr\")'),\n per_page: z\n .number()\n .int()\n .min(1)\n .max(MAX_PAGE_SIZE)\n .default(DEFAULT_PAGE_SIZE)\n .describe('Results per page'),\n page: z.number().int().min(1).default(1).describe('Page number'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { query, locale, per_page, page } = params as {\n query: string;\n locale?: string;\n per_page: number;\n page: number;\n };\n const token = await getToken();\n const p: Record<string, string> = { query, ...buildOffsetParams(per_page, page) };\n if (locale) p['locale'] = locale;\n const response = await helpCenterGet<ZendeskListResponse<ZendeskArticle>>(\n subdomain,\n token,\n '/articles/search',\n p,\n );\n return {\n content: [\n {\n type: 'text',\n text: formatList(\n response.results ?? [],\n formatArticleSummary,\n extractSearchPaginationMeta(response, per_page, page),\n ),\n },\n ],\n };\n },\n },\n {\n name: 'get_article',\n namespace: 'help_center',\n readOnly: true,\n title: 'Get Help Center Article',\n description:\n 'Retrieve an article by ID with full body content. For large articles, prefer get_article_outline + get_article_section to save tokens. Optionally specify locale for a translated version. Returns body (HTML), metadata, source_locale, and list of available translations.',\n inputSchema: z.object({\n article_id: z.number().int().describe('Article ID'),\n locale: z.string().optional().describe('Locale for translated version'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, locale } = params as { article_id: number; locale?: string };\n const token = await getToken();\n const path = locale ? `/${locale}/articles/${article_id}` : `/articles/${article_id}`;\n const { article } = await helpCenterGet<{ article: ZendeskArticle }>(\n subdomain,\n token,\n path,\n );\n const { translations } = await helpCenterGet<{ translations: ZendeskTranslation[] }>(\n subdomain,\n token,\n `/articles/${article_id}/translations`,\n );\n const hint = largeArticleHint(article.body, parseSections(article.body).length);\n const text =\n (hint ?? '') +\n formatArticle(article) +\n `\\n\\n**Available translations**: ${translations.map((t) => t.locale).join(', ')}`;\n return { content: [{ type: 'text', text: truncateIfNeeded(text) }] };\n },\n },\n {\n name: 'list_categories',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Help Center Categories',\n description: 'List all Help Center categories. Optionally filter by locale.',\n inputSchema: z.object({\n locale: z.string().optional(),\n page_size: z.number().int().min(1).max(MAX_PAGE_SIZE).default(DEFAULT_PAGE_SIZE),\n cursor: z.string().optional(),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { locale, page_size, cursor } = params as {\n locale?: string;\n page_size: number;\n cursor?: string;\n };\n const token = await getToken();\n const path = locale ? `/${locale}/categories` : '/categories';\n const response = await helpCenterGet<ZendeskListResponse<ZendeskCategory>>(\n subdomain,\n token,\n path,\n buildCursorParams(page_size, cursor),\n );\n return {\n content: [\n {\n type: 'text',\n text: formatList(\n response.categories ?? [],\n formatCategory,\n extractPaginationMeta(response),\n ),\n },\n ],\n };\n },\n },\n {\n name: 'list_sections',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Help Center Sections',\n description: 'List sections, optionally filtered by category ID and locale.',\n inputSchema: z.object({\n category_id: z.number().int().optional(),\n locale: z.string().optional(),\n page_size: z.number().int().min(1).max(MAX_PAGE_SIZE).default(DEFAULT_PAGE_SIZE),\n cursor: z.string().optional(),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { category_id, locale, page_size, cursor } = params as {\n category_id?: number;\n locale?: string;\n page_size: number;\n cursor?: string;\n };\n const token = await getToken();\n const path =\n category_id && locale\n ? `/${locale}/categories/${category_id}/sections`\n : category_id\n ? `/categories/${category_id}/sections`\n : locale\n ? `/${locale}/sections`\n : '/sections';\n const response = await helpCenterGet<ZendeskListResponse<ZendeskSection>>(\n subdomain,\n token,\n path,\n buildCursorParams(page_size, cursor),\n );\n return {\n content: [\n {\n type: 'text',\n text: formatList(\n response.sections ?? [],\n formatSection,\n extractPaginationMeta(response),\n ),\n },\n ],\n };\n },\n },\n {\n name: 'list_articles',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Help Center Articles',\n description:\n 'List articles (metadata only, no body). Use get_article for full content. Optionally filter by section ID and locale. Supports sort_by (\"title\", \"created_at\", \"updated_at\") and include_translations: true to show available translation locales per article. Note: include_translations must be re-sent on each paginated request.',\n inputSchema: z.object({\n section_id: z.number().int().optional(),\n locale: z.string().optional(),\n page_size: z.number().int().min(1).max(MAX_PAGE_SIZE).default(DEFAULT_PAGE_SIZE),\n cursor: z.string().optional(),\n sort_by: z\n .enum(['created_at', 'updated_at', 'position', 'title'])\n .default('position')\n .describe('Sort field'),\n sort_order: z.enum(['asc', 'desc']).default('asc').describe('Sort direction'),\n include_translations: z\n .boolean()\n .default(false)\n .describe(\n 'Include available translation locales per article (causes 1 extra API call per article)',\n ),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { section_id, locale, page_size, cursor, sort_by, sort_order, include_translations } =\n params as {\n section_id?: number;\n locale?: string;\n page_size: number;\n cursor?: string;\n sort_by: string;\n sort_order: string;\n include_translations: boolean;\n };\n const token = await getToken();\n const path =\n section_id && locale\n ? `/${locale}/sections/${section_id}/articles`\n : section_id\n ? `/sections/${section_id}/articles`\n : locale\n ? `/${locale}/articles`\n : '/articles';\n const response = await helpCenterGet<ZendeskListResponse<ZendeskArticle>>(\n subdomain,\n token,\n path,\n { ...buildCursorParams(page_size, cursor), sort_by, sort_order },\n );\n const articles = response.articles ?? [];\n if (!include_translations) {\n return {\n content: [\n {\n type: 'text',\n text: formatList(articles, formatArticleSummary, extractPaginationMeta(response)),\n },\n ],\n };\n }\n const formatted = await Promise.all(\n articles.map(async (article) => {\n const { translations } = await helpCenterGet<{ translations: ZendeskTranslation[] }>(\n subdomain,\n token,\n `/articles/${article.id}/translations`,\n );\n const locales = translations.map((t) => t.locale).join(', ');\n return `${formatArticleSummary(article)}\\n- **Translations**: ${locales}`;\n }),\n );\n const meta = extractPaginationMeta(response);\n const header = meta.count\n ? `Results: ${meta.count}${meta.has_more ? ` | More available (cursor: ${meta.after_cursor})` : ''}`\n : '';\n const text = [header, ...formatted].filter(Boolean).join('\\n\\n');\n return { content: [{ type: 'text', text: truncateIfNeeded(text) }] };\n },\n },\n {\n name: 'list_article_translations',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Article Translations',\n description:\n 'List all available translations for an article (metadata only, no body: locale, title, draft, updated_at). Use get_article with locale for full translated content.',\n inputSchema: z.object({ article_id: z.number().int().describe('Article ID') }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id } = params as { article_id: number };\n const token = await getToken();\n const { translations } = await helpCenterGet<{ translations: ZendeskTranslation[] }>(\n subdomain,\n token,\n `/articles/${article_id}/translations`,\n );\n return {\n content: [{ type: 'text', text: formatList(translations, formatTranslationSummary) }],\n };\n },\n },\n {\n name: 'create_article_translation',\n namespace: 'help_center',\n readOnly: false,\n title: 'Create Article Translation',\n description: 'Create a translation for an existing article in a specific locale.',\n inputSchema: z.object({\n article_id: z.number().int(),\n locale: z.string().describe('Target locale (e.g., \"fr\", \"de\")'),\n title: z.string().min(1),\n body: z.string().min(1).describe('Translated body (HTML)'),\n draft: z.boolean().default(false),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: false,\n idempotentHint: false,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, locale, title, body, draft } = params as {\n article_id: number;\n locale: string;\n title: string;\n body: string;\n draft: boolean;\n };\n const token = await getToken();\n const { translation } = await helpCenterPost<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations`,\n { translation: { locale, title, body, draft } },\n );\n return {\n content: [\n {\n type: 'text',\n text: `Translation created for article #${article_id} in \"${locale}\".\\n\\n${formatTranslation(translation)}`,\n },\n ],\n };\n },\n },\n {\n name: 'update_article_translation',\n namespace: 'help_center',\n readOnly: false,\n title: 'Update Article Translation',\n description:\n \"Update article content (title, body) in a specific locale. For targeted edits on one or a few sections, prefer update_article_section — this tool replaces the FULL body and re-sends the entire article on each write. Use the article's source_locale (from get_article) for the default language, or another locale for translations.\",\n inputSchema: z.object({\n article_id: z.number().int(),\n locale: z.string(),\n title: z.string().optional(),\n body: z.string().optional(),\n draft: z.boolean().optional(),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: true,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, locale, ...updates } = params as {\n article_id: number;\n locale: string;\n } & Record<string, unknown>;\n const token = await getToken();\n const { translation } = await helpCenterPut<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations/${locale}`,\n { translation: updates },\n );\n return {\n content: [\n {\n type: 'text',\n text: `Translation updated for article #${article_id} in \"${locale}\".\\n\\n${formatTranslation(translation)}`,\n },\n ],\n };\n },\n },\n {\n name: 'list_permission_groups',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Permission Groups',\n description:\n 'List all Guide permission groups. Use this to find the permission_group_id required when creating articles.',\n inputSchema: z.object({}),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async () => {\n const token = await getToken();\n const response = await zendeskGet<{\n permission_groups: ZendeskPermissionGroup[];\n count: number;\n }>(subdomain, token, '/guide/permission_groups');\n return {\n content: [\n {\n type: 'text',\n text: formatList(response.permission_groups ?? [], formatPermissionGroup),\n },\n ],\n };\n },\n },\n {\n name: 'create_article',\n namespace: 'help_center',\n readOnly: false,\n title: 'Create Help Center Article',\n description:\n \"Create a new article in a section. The locale becomes the article's source_locale. Requires a permission_group_id (use list_permission_groups to find available IDs). To add content in other locales afterwards, use create_article_translation.\",\n inputSchema: z.object({\n section_id: z.number().int(),\n title: z.string().min(1),\n body: z.string().min(1).describe('Article body (HTML)'),\n permission_group_id: z\n .number()\n .int()\n .describe('Permission group ID (use list_permission_groups to find it)'),\n user_segment_id: z\n .number()\n .int()\n .optional()\n .describe(\n 'User segment ID for visibility (use list_user_segments to find it). Defaults to everyone.',\n ),\n author_id: z\n .number()\n .int()\n .optional()\n .describe('Author user ID. Defaults to the authenticated user.'),\n content_tag_ids: z\n .array(z.string())\n .optional()\n .describe('Content tag IDs (use list_content_tags to find them)'),\n locale: z.string().optional(),\n draft: z.boolean().default(true),\n promoted: z.boolean().default(false),\n label_names: z\n .array(z.string())\n .optional()\n .describe('Label names for search ranking (use list_labels to see existing labels)'),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: false,\n idempotentHint: false,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { section_id, ...articleData } = params as { section_id: number } & Record<\n string,\n unknown\n >;\n const token = await getToken();\n const { article } = await helpCenterPost<{ article: ZendeskArticle }>(\n subdomain,\n token,\n `/sections/${section_id}/articles`,\n { article: articleData },\n );\n return {\n content: [\n { type: 'text', text: `Article #${article.id} created.\\n\\n${formatArticle(article)}` },\n ],\n };\n },\n },\n {\n name: 'update_article',\n namespace: 'help_center',\n readOnly: false,\n title: 'Update Help Center Article',\n description:\n 'Update article metadata only (draft, promoted, labels, tags, visibility, section, sort position, etc.). Does NOT update content (title, body) — use update_article_translation for that.',\n inputSchema: z.object({\n article_id: z.number().int(),\n draft: z.boolean().optional(),\n promoted: z.boolean().optional(),\n label_names: z.array(z.string()).optional().describe('Label names for search ranking'),\n content_tag_ids: z.array(z.string()).optional().describe('Content tag IDs'),\n user_segment_id: z.number().int().optional().describe('User segment ID for visibility'),\n author_id: z.number().int().optional().describe('Author user ID'),\n permission_group_id: z.number().int().optional().describe('Permission group ID'),\n section_id: z.number().int().optional(),\n position: z\n .number()\n .int()\n .min(0)\n .optional()\n .describe(\n 'Sort position within the section (manual ordering only; 0 = first/top). New articles default to position 0. To move an article to the END of its section, set this to one more than the highest current position: read the highest position P from list_articles with sort_by=\"position\", sort_order=\"desc\", then set position = P + 1.',\n ),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: true,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, ...updates } = params as { article_id: number } & Record<\n string,\n unknown\n >;\n const token = await getToken();\n const { article } = await helpCenterPut<{ article: ZendeskArticle }>(\n subdomain,\n token,\n `/articles/${article_id}`,\n { article: updates },\n );\n return {\n content: [\n { type: 'text', text: `Article #${article.id} updated.\\n\\n${formatArticle(article)}` },\n ],\n };\n },\n },\n {\n name: 'list_content_tags',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Content Tags',\n description:\n 'List all Guide content tags. Content tags are visible to end users and help them find related articles.',\n inputSchema: z.object({}),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async () => {\n const token = await getToken();\n const response = await zendeskGet<{ records: ZendeskContentTag[]; count: number }>(\n subdomain,\n token,\n '/guide/content_tags',\n );\n return {\n content: [{ type: 'text', text: formatList(response.records ?? [], formatContentTag) }],\n };\n },\n },\n {\n name: 'create_content_tag',\n namespace: 'help_center',\n readOnly: false,\n title: 'Create Content Tag',\n description: 'Create a new content tag for Guide articles.',\n inputSchema: z.object({\n name: z.string().min(1).describe('Content tag name'),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: false,\n idempotentHint: false,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { name } = params as { name: string };\n const token = await getToken();\n const { record } = await zendeskPost<{ record: ZendeskContentTag }>(\n subdomain,\n token,\n '/guide/content_tags',\n { record: { name } },\n );\n return {\n content: [{ type: 'text', text: `Content tag created.\\n\\n${formatContentTag(record)}` }],\n };\n },\n },\n {\n name: 'list_labels',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Article Labels',\n description:\n 'List all article labels. Labels improve Help Center search ranking and are not visible to end users.',\n inputSchema: z.object({}),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async () => {\n const token = await getToken();\n const response = await helpCenterGet<{ labels: ZendeskLabel[]; count: number }>(\n subdomain,\n token,\n '/articles/labels',\n );\n return {\n content: [{ type: 'text', text: formatList(response.labels ?? [], formatLabel) }],\n };\n },\n },\n {\n name: 'list_user_segments',\n namespace: 'help_center',\n readOnly: true,\n title: 'List User Segments',\n description:\n 'List all user segments. User segments control article visibility (who can view). Use the ID when creating or updating articles.',\n inputSchema: z.object({}),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async () => {\n const token = await getToken();\n const response = await helpCenterGet<{\n user_segments: ZendeskUserSegment[];\n count: number;\n }>(subdomain, token, '/user_segments');\n return {\n content: [\n { type: 'text', text: formatList(response.user_segments ?? [], formatUserSegment) },\n ],\n };\n },\n },\n {\n name: 'list_article_attachments',\n namespace: 'help_center',\n readOnly: true,\n title: 'List Article Attachments',\n description: 'List all attachments for an article.',\n inputSchema: z.object({\n article_id: z.number().int().describe('Article ID'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id } = params as { article_id: number };\n const token = await getToken();\n const response = await helpCenterGet<{\n article_attachments: ZendeskArticleAttachment[];\n count: number;\n }>(subdomain, token, `/articles/${article_id}/attachments`);\n return {\n content: [\n {\n type: 'text',\n text: formatList(response.article_attachments ?? [], formatAttachment),\n },\n ],\n };\n },\n },\n {\n name: 'get_article_outline',\n namespace: 'help_center',\n readOnly: true,\n title: 'Get Article Outline',\n description:\n 'Return a compact outline of an article (list of sections delimited by h1/h2/h3, with word counts) for the given locale (defaults to source_locale). Includes available translations with their outdated status. Use get_article_section to fetch a specific section.',\n inputSchema: z.object({\n article_id: z.number().int().describe('Article ID'),\n locale: z\n .string()\n .optional()\n .describe('Locale of the body to outline (defaults to article source_locale)'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, locale } = params as { article_id: number; locale?: string };\n const token = await getToken();\n const { article } = await helpCenterGet<{ article: ZendeskArticle }>(\n subdomain,\n token,\n `/articles/${article_id}`,\n );\n const effectiveLocale = locale ?? article.source_locale;\n const { translation } = await helpCenterGet<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations/${effectiveLocale}`,\n );\n const { translations } = await helpCenterGet<{\n translations: Array<ZendeskTranslation & { outdated?: boolean }>;\n }>(subdomain, token, `/articles/${article_id}/translations`);\n const sections = parseSections(translation.body);\n\n const outlineLines = sections.length\n ? sections\n .map(\n (s) =>\n `- [${s.index}] ${s.headingTag ? `${s.headingTag}: ` : ''}${s.heading} (${s.wordCount} words)`,\n )\n .join('\\n')\n : '_(no sections detected)_';\n const translationsList = translations\n .map((t) => `- ${t.locale}${t.outdated ? ' (outdated)' : ''}`)\n .join('\\n');\n\n const text = [\n `# Outline — Article #${article_id} (${effectiveLocale})`,\n `**Title**: ${translation.title}`,\n '',\n '## Sections',\n outlineLines,\n '',\n '## Available translations',\n translationsList,\n ].join('\\n');\n return { content: [{ type: 'text', text }] };\n },\n },\n {\n name: 'get_article_section',\n namespace: 'help_center',\n readOnly: true,\n title: 'Get Article Section',\n description:\n 'Retrieve the content of a single section of an article in a given locale. Use get_article_outline first to discover section indexes. Default format=\"html\" for round-trip safety. Pass format=\"markdown\" only for human review — the Markdown representation is lossy on some structures (<pre> with <br>, tables with multi-<p> cells are kept as raw HTML to limit the damage, but do not round-trip markdown content back through update_article_section).',\n inputSchema: z.object({\n article_id: z.number().int().describe('Article ID'),\n locale: z.string().describe('Locale of the body (e.g., \"en-us\", \"fr\")'),\n section_index: z\n .number()\n .int()\n .min(0)\n .describe('0-based index of the section (see get_article_outline)'),\n format: z\n .enum(['html', 'markdown'])\n .default('html')\n .describe(\n 'Output format. \"html\" (default) is round-trip safe. \"markdown\" is lossy on some HTML structures — use only for human review, not before update_article_section.',\n ),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, locale, section_index, format } = params as {\n article_id: number;\n locale: string;\n section_index: number;\n format: 'html' | 'markdown';\n };\n const token = await getToken();\n const { translation } = await helpCenterGet<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations/${locale}`,\n );\n const sections = parseSections(translation.body);\n const section = sections[section_index];\n if (!section) {\n throw new Error(\n `Section index ${section_index} not found. Article has ${sections.length} section(s) (0-${Math.max(0, sections.length - 1)}).`,\n );\n }\n const content = format === 'markdown' ? htmlToMarkdown(section.html) : section.html;\n const headerLine = section.headingTag\n ? `## [${section.index}] ${section.headingTag}: ${section.heading}`\n : `## [${section.index}] ${section.heading}`;\n const text = [\n headerLine,\n `_Locale: ${locale} | Words: ${section.wordCount} | Format: ${format}_`,\n '',\n content,\n ].join('\\n');\n return { content: [{ type: 'text', text: truncateIfNeeded(text) }] };\n },\n },\n {\n name: 'update_article_section',\n namespace: 'help_center',\n readOnly: false,\n title: 'Update Article Section',\n description:\n 'Replace the content of a single section of an article in a given locale, keeping the rest of the body intact. The server fetches the current body, replaces the targeted section, and PUTs the full reconstructed body via the Translations API. Default format=\"html\" for fidelity. Use format=\"markdown\" only when you control the input and know it does not rely on structures that round-trip poorly (code blocks with line breaks, tables with multi-paragraph cells). The section heading is preserved and is NOT part of the replaced content.',\n inputSchema: z.object({\n article_id: z.number().int().describe('Article ID'),\n locale: z.string().describe('Locale of the translation to update'),\n section_index: z\n .number()\n .int()\n .min(0)\n .describe('0-based index of the section to replace (see get_article_outline)'),\n content: z\n .string()\n .describe(\n 'New content for the section (heading excluded). HTML by default, Markdown if format=\"markdown\".',\n ),\n format: z\n .enum(['html', 'markdown'])\n .default('html')\n .describe(\n 'Input format. \"html\" (default) is the safe path. \"markdown\" is converted to HTML server-side but may introduce artifacts on complex content.',\n ),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: true,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, locale, section_index, content, format } = params as {\n article_id: number;\n locale: string;\n section_index: number;\n content: string;\n format: 'html' | 'markdown';\n };\n const token = await getToken();\n const { translation } = await helpCenterGet<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations/${locale}`,\n );\n const newSectionHtml = format === 'markdown' ? markdownToHtml(content) : content;\n const newBody = replaceSectionContent(translation.body, section_index, newSectionHtml);\n const { translation: updated } = await helpCenterPut<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations/${locale}`,\n { translation: { body: newBody } },\n );\n const updatedSections = parseSections(updated.body);\n const updatedSection = updatedSections[section_index];\n const newWordCount = updatedSection?.wordCount ?? 0;\n const headingLabel = updatedSection?.heading ?? '(intro)';\n const text = [\n `Section [${section_index}] \"${headingLabel}\" updated for article #${article_id} (${locale}).`,\n `New word count: ${newWordCount}.`,\n ].join('\\n');\n return { content: [{ type: 'text', text }] };\n },\n },\n {\n name: 'compare_translations',\n namespace: 'help_center',\n readOnly: true,\n title: 'Compare Article Translations',\n description:\n 'Compare section structure between two locales of the same article, matched by index. Returns a compact table (one row per section) with status: \"ok\" (both present, source/target word count ratio within 25%), \"different\" (word count ratio diverges by more than 25% — size signal only, NOT a semantic divergence: two locales may legitimately differ in verbosity) or \"missing\" (section absent in target). Useful to spot structurally stale or missing sections; do not interpret \"different\" as an edit regression on its own.',\n inputSchema: z.object({\n article_id: z.number().int().describe('Article ID'),\n source_locale: z.string().describe('Source (reference) locale'),\n target_locale: z.string().describe('Target locale to compare against source'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, source_locale, target_locale } = params as {\n article_id: number;\n source_locale: string;\n target_locale: string;\n };\n const token = await getToken();\n const [sourceRes, targetRes] = await Promise.all([\n helpCenterGet<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations/${source_locale}`,\n ),\n helpCenterGet<{ translation: ZendeskTranslation }>(\n subdomain,\n token,\n `/articles/${article_id}/translations/${target_locale}`,\n ),\n ]);\n const sourceSections = parseSections(sourceRes.translation.body);\n const targetSections = parseSections(targetRes.translation.body);\n const maxLen = Math.max(sourceSections.length, targetSections.length);\n\n const rows: string[] = [];\n rows.push(`| Idx | Heading | Status | Source words | Target words |`);\n rows.push(`| --- | --- | --- | --- | --- |`);\n for (let i = 0; i < maxLen; i += 1) {\n const src = sourceSections[i];\n const tgt = targetSections[i];\n const heading = src?.heading ?? tgt?.heading ?? '';\n const sourceWords = src?.wordCount ?? 0;\n const targetWords = tgt?.wordCount ?? 0;\n let status: 'ok' | 'missing' | 'different';\n if (!tgt) status = 'missing';\n else if (!src) status = 'different';\n else {\n const denom = Math.max(sourceWords, 1);\n const diffRatio = Math.abs(sourceWords - targetWords) / denom;\n status = diffRatio > 0.25 ? 'different' : 'ok';\n }\n rows.push(`| ${i} | ${heading} | ${status} | ${sourceWords} | ${targetWords} |`);\n }\n\n const text = [\n `# Translation diff — Article #${article_id} (${source_locale} → ${target_locale})`,\n '',\n ...rows,\n ].join('\\n');\n return { content: [{ type: 'text', text }] };\n },\n },\n {\n name: 'create_article_attachment',\n namespace: 'help_center',\n readOnly: false,\n title: 'Create Article Attachment',\n description:\n 'Upload an attachment to an article. Provide file content as base64-encoded string.',\n inputSchema: z.object({\n article_id: z.number().int().describe('Article ID'),\n file_name: z.string().min(1).describe('File name (e.g., \"screenshot.png\")'),\n file_base64: z.string().min(1).describe('File content encoded as base64'),\n content_type: z\n .string()\n .default('application/octet-stream')\n .describe('MIME type (e.g., \"image/png\", \"application/pdf\")'),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: false,\n idempotentHint: false,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { article_id, file_name, file_base64, content_type } = params as {\n article_id: number;\n file_name: string;\n file_base64: string;\n content_type: string;\n };\n const token = await getToken();\n const buffer = Buffer.from(file_base64, 'base64');\n const blob = new Blob([buffer], { type: content_type });\n const formData = new FormData();\n formData.append('file', blob, file_name);\n const { article_attachment } = await helpCenterUpload<{\n article_attachment: ZendeskArticleAttachment;\n }>(subdomain, token, `/articles/${article_id}/attachments`, formData);\n return {\n content: [\n {\n type: 'text',\n text: `Attachment created for article #${article_id}.\\n\\n${formatAttachment(article_attachment)}`,\n },\n ],\n };\n },\n },\n ];\n};\n","import * as z from 'zod/v4';\nimport { zendeskGet } from '../client/zendesk-api';\nimport { DEFAULT_PAGE_SIZE, MAX_PAGE_SIZE } from '../constants';\nimport type { ZendeskListResponse } from '../types';\nimport { truncateIfNeeded } from '../utils/formatting';\nimport { buildOffsetParams, extractSearchPaginationMeta } from '../utils/pagination';\nimport type { ToolContext, ToolDefinition } from './definitions';\n\nconst formatSearchResult = (result: Record<string, unknown>): string => {\n const lines: string[] = [`## [${result['result_type']}] #${result['id']}`];\n if (result['subject']) lines.push(`**Subject**: ${result['subject']}`);\n if (result['name']) lines.push(`**Name**: ${result['name']}`);\n if (result['title']) lines.push(`**Title**: ${result['title']}`);\n if (result['email']) lines.push(`**Email**: ${result['email']}`);\n if (result['status']) lines.push(`**Status**: ${result['status']}`);\n if (result['description']) {\n const desc = String(result['description']);\n lines.push(desc.length > 200 ? `${desc.slice(0, 200)}...` : desc);\n }\n return lines.join('\\n');\n};\n\nexport const createSearchTools = (ctx: ToolContext): ToolDefinition[] => {\n const { subdomain, getToken } = ctx;\n\n return [\n {\n name: 'search',\n namespace: 'tickets',\n readOnly: true,\n title: 'Zendesk Unified Search',\n description:\n 'Search across tickets, users, and organizations. Supports filters like \"type:ticket status:open\", \"type:user role:agent\". Returns total count and paginated results (100 per page). Organization results include name and ID only — use get_organization for full details (tags, domains, details).',\n inputSchema: z.object({\n query: z.string().min(1).describe('Zendesk search query'),\n per_page: z\n .number()\n .int()\n .min(1)\n .max(MAX_PAGE_SIZE)\n .default(DEFAULT_PAGE_SIZE)\n .describe('Results per page (max 100)'),\n page: z.number().int().min(1).default(1).describe('Page number (1-based)'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { query, per_page, page } = params as {\n query: string;\n per_page: number;\n page: number;\n };\n const token = await getToken();\n const response = await zendeskGet<ZendeskListResponse<Record<string, unknown>>>(\n subdomain,\n token,\n '/search',\n {\n query,\n ...buildOffsetParams(per_page, page),\n },\n );\n const results = response.results ?? [];\n const meta = extractSearchPaginationMeta(response, per_page, page);\n const header = `Total: ${meta.count} | Page ${page} (${results.length} results)${meta.has_more ? ` | Next page: ${meta.after_cursor}` : ''}`;\n const body = results.map(formatSearchResult).join('\\n\\n');\n return {\n content: [\n { type: 'text', text: truncateIfNeeded([header, body].filter(Boolean).join('\\n\\n')) },\n ],\n };\n },\n },\n ];\n};\n","import * as z from 'zod/v4';\nimport {\n fetchZendeskBinary,\n ZendeskApiError,\n zendeskGet,\n zendeskPost,\n zendeskPut,\n} from '../client/zendesk-api';\nimport {\n DEFAULT_PAGE_SIZE,\n MAX_ATTACHMENT_BYTES,\n MAX_COMMENT_PAGES,\n MAX_EMBEDDED_IMAGE_COUNT,\n MAX_PAGE_SIZE,\n} from '../constants';\nimport type {\n ZendeskComment,\n ZendeskListResponse,\n ZendeskTicket,\n ZendeskTicketAttachment,\n} from '../types';\nimport { formatComment, formatList, formatTicket, truncateIfNeeded } from '../utils/formatting';\nimport {\n buildCursorParams,\n buildOffsetParams,\n extractPaginationMeta,\n extractSearchPaginationMeta,\n} from '../utils/pagination';\nimport type { ToolContext, ToolDefinition, ToolImageContent, ToolTextContent } from './definitions';\n\nconst formatReference = (attachment: ZendeskTicketAttachment): string =>\n `**${attachment.file_name}** (id ${attachment.id}, ${attachment.content_type}, ${attachment.size} bytes) — ${attachment.content_url}`;\n\nconst buildEmbeddedImageBlocks = async (\n subdomain: string,\n token: string,\n attachment: ZendeskTicketAttachment,\n reference: string,\n): Promise<Array<ToolTextContent | ToolImageContent>> => {\n const { data, contentType } = await fetchZendeskBinary(subdomain, token, attachment.content_url);\n return [\n { type: 'image', data: data.toString('base64'), mimeType: contentType },\n { type: 'text', text: reference },\n ];\n};\n\n// Zendesk has no endpoint to list a ticket's attachments directly.\n// Attachments are always attached to comments, so the only way to collect\n// them all is to walk through every comment page and extract their attachments.\nconst fetchAllTicketComments = async (\n subdomain: string,\n token: string,\n ticketId: number,\n): Promise<ZendeskComment[]> => {\n const all: ZendeskComment[] = [];\n let cursor: string | undefined;\n let pages = 0;\n while (pages < MAX_COMMENT_PAGES) {\n const response = await zendeskGet<{\n comments: ZendeskComment[];\n meta?: { has_more: boolean; after_cursor: string };\n }>(subdomain, token, `/tickets/${ticketId}/comments`, buildCursorParams(MAX_PAGE_SIZE, cursor));\n all.push(...response.comments);\n pages += 1;\n if (!response.meta?.has_more || !response.meta?.after_cursor) break;\n cursor = response.meta.after_cursor;\n }\n return all;\n};\n\nconst collectAttachmentBlocks = async (\n subdomain: string,\n token: string,\n attachments: ZendeskTicketAttachment[],\n): Promise<Array<ToolTextContent | ToolImageContent>> => {\n const blocks: Array<ToolTextContent | ToolImageContent> = [];\n let embeddedCount = 0;\n\n for (const attachment of attachments) {\n const reference = formatReference(attachment);\n const isImage = attachment.content_type.startsWith('image/');\n\n if (!isImage) {\n blocks.push({ type: 'text', text: reference });\n continue;\n }\n\n let skipReason: string | null = null;\n if (attachment.size > MAX_ATTACHMENT_BYTES) {\n skipReason = 'skipped: exceeds 5 MB per-image limit';\n } else if (embeddedCount >= MAX_EMBEDDED_IMAGE_COUNT) {\n skipReason = `skipped: max ${MAX_EMBEDDED_IMAGE_COUNT} embedded images reached`;\n }\n\n if (skipReason) {\n blocks.push({ type: 'text', text: `${reference} — ${skipReason}` });\n continue;\n }\n\n try {\n blocks.push(...(await buildEmbeddedImageBlocks(subdomain, token, attachment, reference)));\n embeddedCount += 1;\n } catch (error) {\n const reason =\n error instanceof ZendeskApiError\n ? `download failed: ${error.status} ${error.statusText}`\n : 'download failed';\n blocks.push({ type: 'text', text: `${reference} — ${reason}` });\n }\n }\n\n return blocks;\n};\n\nexport const createTicketTools = (ctx: ToolContext): ToolDefinition[] => {\n const { subdomain, getToken } = ctx;\n\n return [\n {\n name: 'get_ticket',\n namespace: 'tickets',\n readOnly: true,\n title: 'Get Zendesk Ticket',\n description:\n 'Retrieve a Zendesk ticket by ID, including its comments if requested. Returns ticket details (subject, status, priority, assignee, tags, description) and optionally all comments/internal notes.',\n inputSchema: z.object({\n ticket_id: z.number().int().describe('Ticket ID'),\n include_comments: z.boolean().default(false).describe('Include ticket comments'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { ticket_id, include_comments } = params as {\n ticket_id: number;\n include_comments: boolean;\n };\n const token = await getToken();\n const { ticket } = await zendeskGet<{ ticket: ZendeskTicket }>(\n subdomain,\n token,\n `/tickets/${ticket_id}`,\n );\n let text = formatTicket(ticket);\n if (include_comments) {\n const { comments } = await zendeskGet<{ comments: ZendeskComment[] }>(\n subdomain,\n token,\n `/tickets/${ticket_id}/comments`,\n );\n text += `\\n\\n---\\n# Comments\\n\\n${comments.map(formatComment).join('\\n\\n')}`;\n }\n return { content: [{ type: 'text', text: truncateIfNeeded(text) }] };\n },\n },\n {\n name: 'get_ticket_attachments',\n namespace: 'tickets',\n readOnly: true,\n title: 'Get Zendesk Ticket Attachments',\n description:\n 'Retrieve ticket attachments. Images are embedded inline; other files are listed as text references.',\n inputSchema: z.object({\n ticket_id: z.number().int().describe('Ticket ID'),\n attachment_ids: z\n .array(z.number().int())\n .optional()\n .describe(\n 'Attachment IDs to fetch directly (e.g. extracted from a previous get_ticket(include_comments=true) call). When provided, skips the comments fetch entirely. When omitted, all attachments of the ticket are returned.',\n ),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { ticket_id, attachment_ids } = params as {\n ticket_id: number;\n attachment_ids?: number[];\n };\n const token = await getToken();\n\n let attachments: ZendeskTicketAttachment[];\n if (attachment_ids && attachment_ids.length > 0) {\n attachments = [];\n for (const id of attachment_ids) {\n try {\n const { attachment } = await zendeskGet<{ attachment: ZendeskTicketAttachment }>(\n subdomain,\n token,\n `/attachments/${id}`,\n );\n attachments.push(attachment);\n } catch (error) {\n if (!(error instanceof ZendeskApiError) || error.status !== 404) throw error;\n }\n }\n } else {\n const comments = await fetchAllTicketComments(subdomain, token, ticket_id);\n attachments = comments.flatMap((c) => c.attachments ?? []);\n }\n\n if (attachments.length === 0) {\n return {\n content: [{ type: 'text', text: `No attachments found on ticket #${ticket_id}.` }],\n };\n }\n const blocks = await collectAttachmentBlocks(subdomain, token, attachments);\n return {\n content: [\n {\n type: 'text',\n text: `# Attachments for ticket #${ticket_id} (${attachments.length} total)`,\n },\n ...blocks,\n ],\n };\n },\n },\n {\n name: 'search_tickets',\n namespace: 'tickets',\n readOnly: true,\n title: 'Search Zendesk Tickets',\n description:\n 'Search tickets using Zendesk query syntax (e.g., \"status:open assignee:me\", \"priority:urgent type:incident\"). Returns total count.',\n inputSchema: z.object({\n query: z.string().min(1).describe('Zendesk search query string'),\n per_page: z\n .number()\n .int()\n .min(1)\n .max(MAX_PAGE_SIZE)\n .default(DEFAULT_PAGE_SIZE)\n .describe('Results per page'),\n page: z.number().int().min(1).default(1).describe('Page number'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { query, per_page, page } = params as {\n query: string;\n per_page: number;\n page: number;\n };\n const token = await getToken();\n const response = await zendeskGet<ZendeskListResponse<ZendeskTicket>>(\n subdomain,\n token,\n '/search',\n {\n query: `type:ticket ${query}`,\n ...buildOffsetParams(per_page, page),\n },\n );\n return {\n content: [\n {\n type: 'text',\n text: formatList(\n response.results ?? [],\n formatTicket,\n extractSearchPaginationMeta(response, per_page, page),\n ),\n },\n ],\n };\n },\n },\n {\n name: 'create_ticket',\n namespace: 'tickets',\n readOnly: false,\n title: 'Create Zendesk Ticket',\n description:\n 'Create a new Zendesk support ticket with subject, description, and optional priority/type/assignee/tags.',\n inputSchema: z.object({\n subject: z.string().min(1).describe('Ticket subject'),\n description: z.string().min(1).describe('Ticket description'),\n priority: z.enum(['urgent', 'high', 'normal', 'low']).optional(),\n type: z.enum(['problem', 'incident', 'question', 'task']).optional(),\n assignee_id: z.number().int().optional(),\n group_id: z.number().int().optional(),\n tags: z.array(z.string()).optional(),\n custom_fields: z.array(z.object({ id: z.number().int(), value: z.unknown() })).optional(),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: false,\n idempotentHint: false,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { subject, description, ...rest } = params as Record<string, unknown>;\n const token = await getToken();\n const { ticket } = await zendeskPost<{ ticket: ZendeskTicket }>(\n subdomain,\n token,\n '/tickets',\n {\n ticket: { subject, comment: { body: description }, ...rest },\n },\n );\n return {\n content: [\n { type: 'text', text: `Ticket #${ticket.id} created.\\n\\n${formatTicket(ticket)}` },\n ],\n };\n },\n },\n {\n name: 'update_ticket',\n namespace: 'tickets',\n readOnly: false,\n title: 'Update Zendesk Ticket',\n description:\n 'Update an existing ticket (status, priority, type, assignee, group, subject, tags, custom fields).',\n inputSchema: z.object({\n ticket_id: z.number().int().describe('Ticket ID'),\n status: z.enum(['new', 'open', 'pending', 'hold', 'solved', 'closed']).optional(),\n priority: z.enum(['urgent', 'high', 'normal', 'low']).optional(),\n type: z.enum(['problem', 'incident', 'question', 'task']).optional(),\n assignee_id: z.number().int().optional(),\n group_id: z.number().int().optional(),\n subject: z.string().optional(),\n tags: z.array(z.string()).optional(),\n custom_fields: z.array(z.object({ id: z.number().int(), value: z.unknown() })).optional(),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: true,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { ticket_id, ...updates } = params as { ticket_id: number } & Record<string, unknown>;\n const token = await getToken();\n const { ticket } = await zendeskPut<{ ticket: ZendeskTicket }>(\n subdomain,\n token,\n `/tickets/${ticket_id}`,\n { ticket: updates },\n );\n return {\n content: [\n { type: 'text', text: `Ticket #${ticket.id} updated.\\n\\n${formatTicket(ticket)}` },\n ],\n };\n },\n },\n {\n name: 'add_private_note',\n namespace: 'tickets',\n readOnly: false,\n title: 'Add Private Note',\n description: 'Add an internal note (not visible to requester) to a ticket.',\n inputSchema: z.object({\n ticket_id: z.number().int().describe('Ticket ID'),\n body: z.string().min(1).describe('Note content'),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: false,\n idempotentHint: false,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { ticket_id, body } = params as { ticket_id: number; body: string };\n const token = await getToken();\n await zendeskPut(subdomain, token, `/tickets/${ticket_id}`, {\n ticket: { comment: { body, public: false } },\n });\n return { content: [{ type: 'text', text: `Private note added to ticket #${ticket_id}.` }] };\n },\n },\n {\n name: 'add_public_comment',\n namespace: 'tickets',\n readOnly: false,\n title: 'Add Public Comment',\n description: 'Add a public comment (visible to requester) to a ticket.',\n inputSchema: z.object({\n ticket_id: z.number().int().describe('Ticket ID'),\n body: z.string().min(1).describe('Comment content'),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: false,\n idempotentHint: false,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { ticket_id, body } = params as { ticket_id: number; body: string };\n const token = await getToken();\n await zendeskPut(subdomain, token, `/tickets/${ticket_id}`, {\n ticket: { comment: { body, public: true } },\n });\n return {\n content: [{ type: 'text', text: `Public comment added to ticket #${ticket_id}.` }],\n };\n },\n },\n {\n name: 'list_tickets',\n namespace: 'tickets',\n readOnly: true,\n title: 'List Zendesk Tickets',\n description: 'List tickets with cursor-based pagination, sorted by most recently updated.',\n inputSchema: z.object({\n page_size: z.number().int().min(1).max(MAX_PAGE_SIZE).default(DEFAULT_PAGE_SIZE),\n cursor: z.string().optional().describe('Pagination cursor'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { page_size, cursor } = params as { page_size: number; cursor?: string };\n const token = await getToken();\n const response = await zendeskGet<ZendeskListResponse<ZendeskTicket>>(\n subdomain,\n token,\n '/tickets',\n buildCursorParams(page_size, cursor),\n );\n return {\n content: [\n {\n type: 'text',\n text: formatList(\n response.tickets ?? [],\n formatTicket,\n extractPaginationMeta(response),\n ),\n },\n ],\n };\n },\n },\n {\n name: 'get_linked_incidents',\n namespace: 'tickets',\n readOnly: true,\n title: 'Get Linked Incidents',\n description: 'Get all incident tickets linked to a problem ticket.',\n inputSchema: z.object({\n problem_id: z.number().int().describe('Problem ticket ID'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { problem_id } = params as { problem_id: number };\n const token = await getToken();\n const response = await zendeskGet<ZendeskListResponse<ZendeskTicket>>(\n subdomain,\n token,\n `/tickets/${problem_id}/incidents`,\n );\n const incidents = response.tickets ?? [];\n const text =\n incidents.length > 0\n ? `# Incidents linked to problem #${problem_id}\\n\\n${incidents.map(formatTicket).join('\\n\\n')}`\n : `No incidents linked to problem #${problem_id}.`;\n return { content: [{ type: 'text', text: truncateIfNeeded(text) }] };\n },\n },\n {\n name: 'manage_tags',\n namespace: 'tickets',\n readOnly: false,\n title: 'Manage Ticket Tags',\n description: 'Add or remove tags on a ticket.',\n inputSchema: z.object({\n ticket_id: z.number().int().describe('Ticket ID'),\n add: z.array(z.string()).optional().describe('Tags to add'),\n remove: z.array(z.string()).optional().describe('Tags to remove'),\n }),\n annotations: {\n readOnlyHint: false,\n destructiveHint: true,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { ticket_id, add, remove } = params as {\n ticket_id: number;\n add?: string[];\n remove?: string[];\n };\n const token = await getToken();\n const { ticket } = await zendeskGet<{ ticket: ZendeskTicket }>(\n subdomain,\n token,\n `/tickets/${ticket_id}`,\n );\n const tags = new Set(ticket.tags);\n add?.forEach((t) => {\n tags.add(t);\n });\n remove?.forEach((t) => {\n tags.delete(t);\n });\n const { ticket: updated } = await zendeskPut<{ ticket: ZendeskTicket }>(\n subdomain,\n token,\n `/tickets/${ticket_id}`,\n { ticket: { tags: [...tags] } },\n );\n return {\n content: [\n {\n type: 'text',\n text: `Tags updated on ticket #${ticket_id}. Current: ${updated.tags.join(', ') || 'none'}`,\n },\n ],\n };\n },\n },\n ];\n};\n","import * as z from 'zod/v4';\nimport { zendeskGet } from '../client/zendesk-api';\nimport { DEFAULT_PAGE_SIZE, MAX_PAGE_SIZE } from '../constants';\nimport type { ZendeskListResponse, ZendeskOrganization, ZendeskUser } from '../types';\nimport { formatList, formatOrganization, formatUser } from '../utils/formatting';\nimport {\n buildCursorParams,\n buildOffsetParams,\n extractPaginationMeta,\n extractSearchPaginationMeta,\n} from '../utils/pagination';\nimport type { ToolContext, ToolDefinition } from './definitions';\n\nexport const createUserTools = (ctx: ToolContext): ToolDefinition[] => {\n const { subdomain, getToken } = ctx;\n\n return [\n {\n name: 'get_current_user',\n namespace: 'users',\n readOnly: true,\n title: 'Get Current Zendesk User',\n description:\n 'Get the currently authenticated Zendesk user. Useful to verify identity and permissions.',\n inputSchema: z.object({}),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async () => {\n const token = await getToken();\n const { user } = await zendeskGet<{ user: ZendeskUser }>(subdomain, token, '/users/me');\n return { content: [{ type: 'text', text: formatUser(user) }] };\n },\n },\n {\n name: 'search_users',\n namespace: 'users',\n readOnly: true,\n title: 'Search Zendesk Users',\n description:\n 'Search for users by name, email, or other criteria using Zendesk search query syntax. Returns total count.',\n inputSchema: z.object({\n query: z.string().min(1).describe('Search query'),\n per_page: z\n .number()\n .int()\n .min(1)\n .max(MAX_PAGE_SIZE)\n .default(DEFAULT_PAGE_SIZE)\n .describe('Results per page'),\n page: z.number().int().min(1).default(1).describe('Page number'),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { query, per_page, page } = params as {\n query: string;\n per_page: number;\n page: number;\n };\n const token = await getToken();\n const response = await zendeskGet<ZendeskListResponse<ZendeskUser>>(\n subdomain,\n token,\n '/search',\n {\n query: `type:user ${query}`,\n ...buildOffsetParams(per_page, page),\n },\n );\n return {\n content: [\n {\n type: 'text',\n text: formatList(\n response.results ?? [],\n formatUser,\n extractSearchPaginationMeta(response, per_page, page),\n ),\n },\n ],\n };\n },\n },\n {\n name: 'get_user',\n namespace: 'users',\n readOnly: true,\n title: 'Get Zendesk User',\n description: 'Retrieve a user by ID.',\n inputSchema: z.object({ user_id: z.number().int().describe('User ID') }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { user_id } = params as { user_id: number };\n const token = await getToken();\n const { user } = await zendeskGet<{ user: ZendeskUser }>(\n subdomain,\n token,\n `/users/${user_id}`,\n );\n return { content: [{ type: 'text', text: formatUser(user) }] };\n },\n },\n {\n name: 'get_organization',\n namespace: 'users',\n readOnly: true,\n title: 'Get Zendesk Organization',\n description: 'Retrieve an organization by ID.',\n inputSchema: z.object({ organization_id: z.number().int().describe('Organization ID') }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { organization_id } = params as { organization_id: number };\n const token = await getToken();\n const { organization } = await zendeskGet<{ organization: ZendeskOrganization }>(\n subdomain,\n token,\n `/organizations/${organization_id}`,\n );\n return { content: [{ type: 'text', text: formatOrganization(organization) }] };\n },\n },\n {\n name: 'list_organizations',\n namespace: 'users',\n readOnly: true,\n title: 'List Zendesk Organizations',\n description: 'List all organizations with pagination.',\n inputSchema: z.object({\n page_size: z.number().int().min(1).max(MAX_PAGE_SIZE).default(DEFAULT_PAGE_SIZE),\n cursor: z.string().optional(),\n }),\n annotations: {\n readOnlyHint: true,\n destructiveHint: false,\n idempotentHint: true,\n openWorldHint: true,\n },\n handler: async (params) => {\n const { page_size, cursor } = params as { page_size: number; cursor?: string };\n const token = await getToken();\n const response = await zendeskGet<ZendeskListResponse<ZendeskOrganization>>(\n subdomain,\n token,\n '/organizations',\n buildCursorParams(page_size, cursor),\n );\n return {\n content: [\n {\n type: 'text',\n text: formatList(\n response.organizations ?? [],\n formatOrganization,\n extractPaginationMeta(response),\n ),\n },\n ],\n };\n },\n },\n ];\n};\n","import type { ToolContext, ToolDefinition } from './definitions';\nimport { createHelpCenterTools } from './help-center';\nimport { createSearchTools } from './search';\nimport { createTicketTools } from './tickets';\nimport { createUserTools } from './users';\n\nexport type { ToolContext, ToolDefinition } from './definitions';\n\nexport const createAllTools = (ctx: ToolContext): ToolDefinition[] => [\n ...createTicketTools(ctx),\n ...createSearchTools(ctx),\n ...createHelpCenterTools(ctx),\n ...createUserTools(ctx),\n];\n","import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';\nimport * as z from 'zod/v4';\nimport { ZendeskApiError } from './client/zendesk-api';\nimport type { Config } from './config';\nimport { filterTools, groupByNamespace } from './routing/registry';\nimport type { ToolAnnotations, ToolResult } from './tools/definitions';\nimport { createAllTools, type ToolDefinition } from './tools/index';\nimport { type Logger, silentLogger } from './utils/logger';\nimport { readPackageInfo } from './utils/package-info';\n\n/**\n * Invoke a tool handler, notifying `onUnauthorized` when Zendesk rejects the\n * token (401). This lets the OAuth store drop the dead token so the next call\n * refreshes/re-authenticates instead of replaying a revoked token. A no-op\n * callback (API-token mode) leaves behavior unchanged.\n */\nconst runHandler = async (\n def: ToolDefinition,\n params: Record<string, unknown>,\n onUnauthorized: (() => void) | undefined,\n): Promise<ToolResult> => {\n try {\n return await def.handler(params);\n } catch (err) {\n if (onUnauthorized && err instanceof ZendeskApiError && err.status === 401) {\n onUnauthorized();\n }\n throw err;\n }\n};\n\nconst NAMESPACE_LABELS: Record<string, { toolName: string; title: string }> = {\n tickets: { toolName: 'zendesk_tickets', title: 'Zendesk Tickets' },\n help_center: { toolName: 'zendesk_help_center', title: 'Zendesk Help Center' },\n users: { toolName: 'zendesk_users', title: 'Zendesk Users' },\n};\n\n// Keep proxy descriptions compact: a proxy tool concatenates one line per\n// sub-operation, so only the first sentence of each tool description is\n// included. Clients still receive the full schema via the wrapped tool.\nexport const summarizeDescription = (description: string): string => {\n const idx = description.indexOf('. ');\n if (idx === -1) return description;\n return description.slice(0, idx + 1);\n};\n\nexport const buildOperationList = (\n tools: ReadonlyArray<Pick<ToolDefinition, 'name' | 'description' | 'readOnly'>>,\n): string =>\n tools\n .map(\n (t) =>\n `- **${t.name}**: ${summarizeDescription(t.description)}${t.readOnly ? '' : ' (write)'}`,\n )\n .join('\\n');\n\n// A proxy aggregates N sub-operations. Hints follow the safest plausible\n// reading: readOnly/idempotent only if EVERY op is, destructive as soon as\n// ANY op is. openWorld is always true (we always hit Zendesk).\n// Mistral/Vibe ignore annotations entirely, hence the `[RO]` prefix below.\nexport const aggregateAnnotations = (\n tools: ReadonlyArray<Pick<ToolDefinition, 'annotations'>>,\n): ToolAnnotations => ({\n readOnlyHint: tools.every((t) => t.annotations.readOnlyHint),\n destructiveHint: tools.some((t) => t.annotations.destructiveHint),\n idempotentHint: tools.every((t) => t.annotations.idempotentHint),\n openWorldHint: true,\n});\n\nconst registerProxyTool = (\n server: McpServer,\n toolName: string,\n title: string,\n tools: ToolDefinition[],\n handlerMap: Map<string, ToolDefinition>,\n readOnlyMode: boolean,\n onUnauthorized: (() => void) | undefined,\n): void => {\n const operationNames = tools.map((t) => t.name);\n const operationList = buildOperationList(tools);\n const annotations = aggregateAnnotations(tools);\n const prefix = readOnlyMode ? '[RO] ' : '';\n\n server.registerTool(\n toolName,\n {\n title,\n description: `${prefix}${title}. Specify the operation and its parameters.\\n\\nAvailable operations:\\n${operationList}`,\n inputSchema: z.object({\n operation: z.string().describe(`One of: ${operationNames.join(', ')}`),\n params: z.record(z.string(), z.unknown()).default({}).describe('Operation parameters'),\n }),\n annotations,\n },\n async ({ operation, params }) => {\n const def = handlerMap.get(operation);\n if (!def) {\n return {\n content: [\n {\n type: 'text' as const,\n text: `Unknown operation \"${operation}\". Available: ${operationNames.join(', ')}`,\n },\n ],\n };\n }\n // Validate params through the tool's own schema\n const validated = def.inputSchema.parse(params);\n return runHandler(def, validated, onUnauthorized);\n },\n );\n};\n\nexport const createMcpServer = (\n config: Config,\n getToken: () => string | Promise<string>,\n logger: Logger = silentLogger,\n // Called when a tool handler hits a 401 from Zendesk (OAuth mode only). Lets\n // the token store invalidate the rejected token. Omitted in API-token mode.\n onUnauthorized?: () => void,\n): McpServer => {\n // Read name/version from package.json at runtime rather than hardcoding them\n // (the old literals were stale and even carried the wrong package name).\n const pkg = readPackageInfo();\n const server = new McpServer(\n {\n name: pkg.name,\n version: pkg.version,\n },\n // Advertise the logging capability so structured diagnostics (notably the\n // OAuth browser flow) reach clients that support it. Clients that don't\n // simply ignore the notifications.\n { capabilities: { logging: {} } },\n );\n\n // Route the logger's MCP sink through this server. Auth runs lazily on the\n // first tool call (after connect), so notifications can flow by then.\n logger.attachServer(server);\n\n const allTools = createAllTools({ subdomain: config.subdomain, getToken });\n\n // Apply filters (--read-only, --namespace, --tool)\n const filteredTools = filterTools(allTools, {\n readOnly: config.readOnly,\n namespaces: config.namespaces,\n tools: config.tools,\n });\n\n // Build handler map for proxy dispatch\n const handlerMap = new Map<string, ToolDefinition>();\n for (const tool of filteredTools) {\n handlerMap.set(tool.name, tool);\n }\n\n switch (config.mode) {\n case 'all': {\n // Register each tool individually\n for (const tool of filteredTools) {\n server.registerTool(\n tool.name,\n {\n title: tool.title,\n description: tool.description,\n inputSchema: tool.inputSchema,\n annotations: tool.annotations,\n },\n async (params) => runHandler(tool, params as Record<string, unknown>, onUnauthorized),\n );\n }\n break;\n }\n case 'namespace': {\n const grouped = groupByNamespace(filteredTools);\n for (const [namespace, tools] of grouped) {\n const label = NAMESPACE_LABELS[namespace];\n if (label) {\n registerProxyTool(\n server,\n label.toolName,\n label.title,\n tools,\n handlerMap,\n config.readOnly,\n onUnauthorized,\n );\n }\n }\n break;\n }\n case 'single': {\n registerProxyTool(\n server,\n 'zendesk',\n 'Zendesk',\n filteredTools,\n handlerMap,\n config.readOnly,\n onUnauthorized,\n );\n break;\n }\n }\n\n logger.info('tools_registered', { count: filteredTools.length, mode: config.mode });\n return server;\n};\n","import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';\nimport { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport { type Logger, silentLogger } from '../utils/logger';\n\nexport const startStdioTransport = async (\n server: McpServer,\n logger: Logger = silentLogger,\n): Promise<void> => {\n const transport = new StdioServerTransport();\n await server.connect(transport);\n logger.info('stdio_transport_ready');\n};\n","import { buildBasicAuthHeader } from './auth/api-token';\nimport { createTokenStore } from './auth/token-store';\nimport { loadConfig } from './config';\nimport { createMcpServer } from './server';\nimport { startStdioTransport } from './transports/stdio';\nimport { createLogger } from './utils/logger';\n\nconst main = async (): Promise<void> => {\n const config = loadConfig();\n const logger = createLogger(config.logLevel);\n\n if (config.zendeskEmail && config.zendeskApiToken) {\n // API token mode — static Basic auth\n const staticToken = buildBasicAuthHeader(config.zendeskEmail, config.zendeskApiToken);\n const getToken = () => staticToken;\n const server = createMcpServer(config, getToken, logger);\n await startStdioTransport(server, logger);\n } else {\n // OAuth mode — browser-based auth on first tool call\n const tokenStore = createTokenStore(\n {\n subdomain: config.subdomain,\n oauthClientId: config.oauthClientId,\n callbackPort: config.callbackPort,\n },\n logger,\n );\n const server = createMcpServer(config, tokenStore.getToken, logger, tokenStore.invalidate);\n await startStdioTransport(server, logger);\n }\n};\n\nmain().catch((error) => {\n console.error('Fatal error:', error);\n process.exit(1);\n});\n"],"mappings":"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"}
|