We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/YUChoe/sqlite-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
deleteData.d.ts•520 B
/**
* 데이터 삭제 도구
* DELETE SQL을 실행하고 삭제된 행 수를 반환합니다.
*/
import type { DeleteDataInput } from '../types/schemas.js';
import type { ToolDefinition, ToolResult } from '../types/index.js';
/**
* 데이터 삭제 도구 정의
*/
export declare const deleteDataTool: ToolDefinition;
/**
* 데이터 삭제 함수 (MCP 서버에서 직접 호출용)
*/
export declare function deleteData(params: DeleteDataInput): Promise<ToolResult>;
//# sourceMappingURL=deleteData.d.ts.map