UNPKG

@coding-cloud/coding-cloud-mcp-server

Version:

TypeScript Model Context Protocol (MCP) server for coding-cloud.com API.

25 lines (24 loc) 506 B
export interface Snippet { id: string; language: string; code: string; description?: string; title?: string; rating?: number; views?: number; tags?: string[]; slug?: string; type?: string; postedAt?: string; } export interface CodingCloudApiResponse { status: 'success' | 'error'; message?: string; snippets: Snippet[]; hasMore: boolean; total?: number; page?: number; limit?: number; } export interface CodingCloudRequestOptions { }