systemprompt-mcp-reddit
Version:
A specialized Model Context Protocol (MCP) server that enables you to search, read, and interact with Reddit content, leveraging an AI Agent to help with each operation.
12 lines (11 loc) • 522 B
TypeScript
import { Tool } from "@modelcontextprotocol/sdk/types.js";
import { RedditConfigData } from "../types/config.js";
export declare const TOOL_ERROR_MESSAGES: {
readonly UNKNOWN_TOOL: "Unknown tool:";
readonly TOOL_CALL_FAILED: "Tool call failed:";
};
export declare const TOOL_RESPONSE_MESSAGES: {
readonly ASYNC_PROCESSING: "Request is being processed asynchronously";
};
export declare const TOOLS: Tool[];
export declare function populateToolsInitialData(tools: Tool[], configData: RedditConfigData): Tool[];