@specstory/tnydev-mcp
Version:
MCP server for tny.dev URL shortening service - AI agent integration for link management
32 lines • 824 B
TypeScript
import { TnyDevClient } from '../client.js';
export declare function handleShortenUrl(params: unknown, client: TnyDevClient): Promise<{
content: Array<{
type: string;
text: string;
}>;
}>;
export declare const shortenUrlTool: {
name: string;
description: string;
inputSchema: {
type: string;
properties: {
url: {
type: string;
format: string;
description: string;
};
customSlug: {
type: string;
pattern: string;
description: string;
};
domainId: {
type: string;
description: string;
};
};
required: string[];
};
};
//# sourceMappingURL=shorten.d.ts.map