Skip to main content
Glama
Igordeveloperr

Yandex Tracker MCP Server

issue.ts1.34 kB
import { array, string, z } from "zod"; import { statusSchema, prioritySchema, issueTypeSchema, projectSchema, parentSchema, } from "./baseSchemas"; import { userSchemaSimple } from "./user"; import { queueSchema } from "./queue"; export const issueSchemaSimple = z.object({ id: z.string(), key: z.string() }); export type SimpleIssue = z.infer<typeof issueSchema>; export const issueSchema = issueSchemaSimple.extend({ self: z.string().url().optional(), version: z.number().optional(), lastCommentUpdatedAt: z.string().optional(), summary: z.string().optional(), parent: parentSchema.optional(), aliases: z.array(z.string()).optional(), updatedBy: userSchemaSimple.optional(), description: z.string().optional(), sprint: z.array(userSchemaSimple).optional(), type: issueTypeSchema.optional(), priority: prioritySchema.optional(), createdAt: z.string().optional(), followers: z.array(userSchemaSimple).optional(), createdBy: userSchemaSimple.optional(), votes: z.number().optional(), assignee: userSchemaSimple.optional(), project: projectSchema.optional(), queue: queueSchema.optional(), updatedAt: z.string().optional(), status: statusSchema.optional(), previousStatus: statusSchema.optional(), favorite: z.boolean().optional(), }); export type Issue = z.infer<typeof issueSchema>;

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/Igordeveloperr/Yandex-tracker-MCP'

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