We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/minipuft/claude-prompts-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
parser-utils.d.ts•595 B
/**
* Normalize >> prefixes in symbolic commands for consistent parsing.
*
* The >> prefix serves as a hint to LLMs that this is an MCP tool command,
* but it should not interfere with symbolic operator detection.
*/
export declare function normalizeSymbolicPrefixes(command: string): {
normalized: string;
hadPrefixes: boolean;
originalCommand: string;
};
/**
* Remove style operators from a command segment to avoid polluting prompt args.
* Handles new #styleid syntax (e.g., #analytical, #procedural)
*/
export declare function stripStyleOperators(input: string): string;