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) 731 B
/** * Resources server feature tests */ import { ProtocolFeatureTests } from '../../ProtocolFeatureTests.js'; import type { ProtocolFeature, ProtocolCategory } from '../../types.js'; import { ResourcesCapabilityTest, ResourceSchemaValidationTest, ResourceReadingTest, ResourceMimeTypeTest } from '../../server-features/ResourcesTests.js'; export declare class ResourcesFeature extends ProtocolFeatureTests { readonly feature: ProtocolFeature; readonly category: ProtocolCategory; readonly displayName = "Resources"; readonly requiredCapability: "resources"; readonly tests: (typeof ResourcesCapabilityTest | typeof ResourceSchemaValidationTest | typeof ResourceReadingTest | typeof ResourceMimeTypeTest)[]; }