UNPKG

mcp-server-tester-sse-http-stdio

Version:

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

13 lines (12 loc) 1.09 kB
/** * Server Features Tests for MCP Compliance * * Comprehensive diagnostic tests for MCP server features including: * - Tools (capability, listing, execution, schema validation, error handling, annotations) * - Resources (capability, listing, reading, MIME types, URI validation, error handling) * - Prompts (capability, listing, retrieval, argument validation, template rendering) */ import { ToolsCapabilityTest, ToolSchemaValidationTest, ToolExecutionTest, ToolAnnotationsTest } from './ToolsTests.js'; import { ResourcesCapabilityTest, ResourceSchemaValidationTest, ResourceReadingTest, ResourceMimeTypeTest } from './ResourcesTests.js'; import { PromptsCapabilityTest, PromptSchemaValidationTest, PromptRetrievalTest, PromptArgumentValidationTest } from './PromptsTests.js'; export { ToolsCapabilityTest, ToolSchemaValidationTest, ToolExecutionTest, ToolAnnotationsTest, ResourcesCapabilityTest, ResourceSchemaValidationTest, ResourceReadingTest, ResourceMimeTypeTest, PromptsCapabilityTest, PromptSchemaValidationTest, PromptRetrievalTest, PromptArgumentValidationTest, };