Skip to main content
Glama
yjiace

AlibabaCloud DevOps MCP Server

by yjiace
appstack-templates.ts730 B
import { z } from 'zod'; import { searchAppTemplates, SearchAppTemplatesRequestSchema } from '../operations/appstack/appTemplates.js'; /** * Handle the appstack template tool requests * * @param request - The tool request * @returns The tool response or null if not handled */ export async function handleAppStackTemplateTools(request: any) { switch (request.params.name) { case 'search_app_templates': const searchParams = SearchAppTemplatesRequestSchema.parse(request.params.arguments); const searchResult = await searchAppTemplates(searchParams); return { content: [{ type: "text", text: JSON.stringify(searchResult, null, 2) }], }; default: return null; } }

Latest Blog Posts

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/yjiace/alibabacloud-devops-mcp-server'

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