Skip to main content
Glama

Targetprocess MCP Server

show-all.tool.ts594 B
import { z } from 'zod'; import { getFullContent } from '../../utils/paginator.js'; export const showAllToolSchema = z.object({ cacheKey: z.string().describe('Cache key from previous paginated result') }); export type ShowAllToolInput = z.infer<typeof showAllToolSchema>; /** * Show all results without pagination */ export class ShowAllTool { async execute(args: unknown) { const { cacheKey } = showAllToolSchema.parse(args); const fullText = getFullContent(cacheKey); return { content: [{ type: 'text', text: fullText }] }; } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aaronsb/apptio-target-process-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server