UNPKG

mcp-server-tester-sse-http-stdio

Version:

MCP Server Tester with SSE support - Test MCP servers using HTTP, SSE, and STDIO transports

14 lines (13 loc) 689 B
/** * Tools server feature tests */ import { ProtocolFeatureTests } from '../../ProtocolFeatureTests.js'; import type { ProtocolFeature, ProtocolCategory } from '../../types.js'; import { ToolsCapabilityTest, ToolSchemaValidationTest, ToolExecutionTest, ToolAnnotationsTest } from '../../server-features/ToolsTests.js'; export declare class ToolsFeature extends ProtocolFeatureTests { readonly feature: ProtocolFeature; readonly category: ProtocolCategory; readonly displayName = "Tools"; readonly requiredCapability: "tools"; readonly tests: (typeof ToolsCapabilityTest | typeof ToolSchemaValidationTest | typeof ToolExecutionTest | typeof ToolAnnotationsTest)[]; }