Skip to main content
Glama

FeedbackBasket MCP Server

by deifos
client.d.ts1.52 kB
export declare class FeedbackBasketClient { private api; constructor(apiKey: string, baseUrl?: string); /** * List all projects accessible by the API key */ listProjects(): Promise<{ content: Array<{ type: string; text: string; }>; }>; /** * Get feedback for projects */ getFeedback(params?: { projectId?: string; category?: 'BUG' | 'FEATURE' | 'REVIEW'; status?: 'PENDING' | 'REVIEWED' | 'DONE'; sentiment?: 'POSITIVE' | 'NEGATIVE' | 'NEUTRAL'; limit?: number; search?: string; includeNotes?: boolean; }): Promise<{ content: Array<{ type: string; text: string; }>; }>; /** * Get bug reports specifically */ getBugReports(params?: { projectId?: string; status?: 'PENDING' | 'REVIEWED' | 'DONE'; severity?: 'high' | 'medium' | 'low'; limit?: number; search?: string; includeNotes?: boolean; }): Promise<{ content: Array<{ type: string; text: string; }>; }>; /** * Search feedback across all accessible projects */ searchFeedback(query: string, options?: { projectId?: string; category?: 'BUG' | 'FEATURE' | 'REVIEW'; limit?: number; }): Promise<{ content: Array<{ type: string; text: string; }>; }>; private handleError; }

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/deifos/feedbackbasket-mcp'

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