3gpp-mcp-charging
Version:
3GPP MCP Server V3.0.0 - Direct access to TSpec-LLM dataset (arxiv.org/abs/2406.01768) and 3GPP specifications via external APIs
36 lines • 1.02 kB
TypeScript
import { GuidanceEngine } from '../utils/guidance-engine';
export declare class GuideSpecificationSearchTool {
private guidanceEngine;
constructor(guidanceEngine: GuidanceEngine);
getDefinition(): {
name: string;
description: string;
inputSchema: {
type: string;
properties: {
query: {
type: string;
description: string;
};
userLevel: {
type: string;
enum: string[];
description: string;
};
domain: {
type: string;
description: string;
};
};
required: string[];
};
};
execute(args: any): Promise<{
content: {
type: string;
text: string;
}[];
}>;
private formatGuidanceResponse;
}
//# sourceMappingURL=guide-specification-search.d.ts.map