We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kinmeic/stock-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { WatchItem, Market } from './types.js';
export declare function addWatch(code: string, name: string, reason: string, market: Market): WatchItem;
export declare function updateWatch(code: string, market: Market, updates: Partial<Pick<WatchItem, 'name' | 'reason'>>): WatchItem | null;
export declare function removeWatch(code: string, market: Market): boolean;
export declare function getAllWatch(): WatchItem[];
export declare function getWatch(code: string, market: Market): WatchItem | null;