#!/usr/bin/env node /** * Frase MCP Server * * A Model Context Protocol (MCP) server that allows customers to interact with * their Frase account via AI tools like Claude Desktop. * * Features: * - API key authentication * - All v1 API functionality as MCP tools * - Markdown-formatted responses for easy reading * - Local caching for improved performance * - Auto-retry with exponential backoff * * Usage: * Set FRASE_API_KEY environment variable before connecting * * Claude Desktop config example: * { * "mcpServers": { * "frase": { * "command": "npx", * "args": ["-y", "@frase/mcp-server"], * "env": { * "FRASE_API_KEY": "your-api-key-here" * } * } * } * } */ export {}; //# sourceMappingURL=index.d.ts.map