Skip to main content
Glama
blade47

ShadowGit MCP Server

by blade47
types.ts953 B
/** * Type definitions for ShadowGit MCP Server */ export interface Repository { name: string; path: string; } export interface GitCommandArgs { repo: string; command: string; } export interface ManualCheckpointArgs { repo: string; title: string; message?: string; author?: string; } // MCP Tool Response format export type MCPToolResponse = { content: Array<{ type: string; text: string; }>; success?: boolean; // Optional flag to indicate if the operation was successful }; // Session API types export interface SessionStartRequest { repoPath: string; aiTool: string; description: string; } export interface SessionStartResponse { success: boolean; sessionId?: string; error?: string; } export interface SessionEndRequest { sessionId: string; commitHash?: string; } export interface SessionEndResponse { success: boolean; error?: string; }

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/blade47/shadowgit-mcp'

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