UNPKG

systemprompt-mcp-gmail

Version:

A specialized Model Context Protocol (MCP) server that enables you to search, read, delete and send emails from your Gmail account, leveraging an AI Agent to help with each operation.

17 lines (16 loc) 736 B
import type { SystempromptPromptResponse, SystempromptBlockResponse, SystempromptAgentResponse, SystempromptUserStatusResponse } from "../types/systemprompt.js"; export declare class SystemPromptService { private static instance; private baseUrl; private constructor(); static initialize(): void; static getInstance(): SystemPromptService; static cleanup(): void; private request; getAllPrompts(): Promise<SystempromptPromptResponse[]>; listBlocks(): Promise<SystempromptBlockResponse[]>; listAgents(): Promise<SystempromptAgentResponse[]>; fetchUserStatus(): Promise<SystempromptUserStatusResponse>; deletePrompt(id: string): Promise<void>; deleteBlock(id: string): Promise<void>; }