Skip to main content
Glama
mdz-axo

PT-MCP (Paul Test Man Context Protocol)

by mdz-axo
simple-git-plugin.d.ts1.36 kB
import { ChildProcess, SpawnOptions } from 'child_process'; import { GitExecutorResult } from '../types'; type SimpleGitTaskPluginContext = { readonly method: string; readonly commands: string[]; }; export interface SimpleGitPluginTypes { 'spawn.args': { data: string[]; context: SimpleGitTaskPluginContext & {}; }; 'spawn.binary': { data: string; context: SimpleGitTaskPluginContext & {}; }; 'spawn.options': { data: Partial<SpawnOptions>; context: SimpleGitTaskPluginContext & {}; }; 'spawn.before': { data: void; context: SimpleGitTaskPluginContext & { kill(reason: Error): void; }; }; 'spawn.after': { data: void; context: SimpleGitTaskPluginContext & { spawned: ChildProcess; close(exitCode: number, reason?: Error): void; kill(reason: Error): void; }; }; 'task.error': { data: { error?: Error; }; context: SimpleGitTaskPluginContext & GitExecutorResult; }; } export type SimpleGitPluginType = keyof SimpleGitPluginTypes; export interface SimpleGitPlugin<T extends SimpleGitPluginType> { action(data: SimpleGitPluginTypes[T]['data'], context: SimpleGitPluginTypes[T]['context']): typeof data; type: T; } export {};

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/mdz-axo/pt-mcp'

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