Skip to content
Draft
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
18 changes: 17 additions & 1 deletion src/scenarios/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ import {
ResourcesNotFoundErrorScenario
} from './server/resources';

import { EventsDiscoveryScenario } from './server/events/discovery';
import { EventsPollScenario } from './server/events/poll';
import { SkillsDirectoryReadScenario } from './server/skills/directory';
import { SkillsEnumerationScenario } from './server/skills/enumeration';
import { SkillsManifestScenario } from './server/skills/manifest';
Expand Down Expand Up @@ -165,7 +167,16 @@ const pendingClientScenariosList: ClientScenario[] = [
// `npm start -- server --scenario sep-2640-skills-* --url <fixture>`.
new SkillsDirectoryReadScenario(),
new SkillsEnumerationScenario(),
new SkillsManifestScenario()
new SkillsManifestScenario(),

// MCP Events. Pending because the everything-server does not implement the
// events capability; targeted runs point at an events-capable fixture via
// `npm start -- server --scenario events-* --url <fixture>`. The suite
// scores against the merged design sketch in
// modelcontextprotocol/experimental-ext-triggers-events, which has no SEP
// number yet — see the header of src/seps/sep-9999.yaml.
new EventsDiscoveryScenario(),
new EventsPollScenario()
];

// All client scenarios
Expand Down Expand Up @@ -223,6 +234,11 @@ const allClientScenariosList: ClientScenario[] = [
new SkillsEnumerationScenario(),
new SkillsManifestScenario(),

// MCP Events. Fixture-dependent (needs a server declaring `capabilities.events`);
// each scenario SKIPs cleanly when the capability is not declared.
new EventsDiscoveryScenario(),
new EventsPollScenario(),

// Prompts scenarios
new PromptsListScenario(),
new PromptsGetSimpleScenario(),
Expand Down
Loading
Loading