Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/scenarios/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ import {
CompletionCompleteScenario
} from './server/utils';

import {
LoggingCapabilityScenario,
LoggingInvalidLevelScenario,
LoggingThresholdFilteringScenario
} from './server/logging';

import {
ToolsListScenario,
ToolsCallSimpleTextScenario,
Expand Down Expand Up @@ -123,6 +129,12 @@ import { JsonSchema2020_12PreservationScenario } from './client/json-schema-2020

// Pending client scenarios (not yet fully tested/implemented)
const pendingClientScenariosList: ClientScenario[] = [
// Logging scenarios that require server-side filtering and invalid-level
// rejection — the everything-server does not implement these behaviors.
// Run targeted: `npm start -- server --scenario logging-invalid-level --url <fixture>`
new LoggingInvalidLevelScenario(),
new LoggingThresholdFilteringScenario(),

// JSON Schema 2020-12 (SEP-1613)
// This test is pending until the SDK includes PR #1135 which preserves
// $schema, $defs, and additionalProperties fields in tool schemas.
Expand Down Expand Up @@ -163,6 +175,9 @@ const allClientScenariosList: ClientScenario[] = [

// Utilities scenarios
new LoggingSetLevelScenario(),
new LoggingCapabilityScenario(),
new LoggingInvalidLevelScenario(),
new LoggingThresholdFilteringScenario(),
new PingScenario(),
new CompletionCompleteScenario(),

Expand Down
Loading