MCPcopy
hub / github.com/modelcontextprotocol/servers / ThoughtData

Interface ThoughtData

src/sequentialthinking/lib.ts:3–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import chalk from 'chalk';
2
3export interface ThoughtData {
4 thought: string;
5 thoughtNumber: number;
6 totalThoughts: number;
7 isRevision?: boolean;
8 revisesThought?: number;
9 branchFromThought?: number;
10 branchId?: string;
11 needsMoreThoughts?: boolean;
12 nextThoughtNeeded: boolean;
13}
14
15export class SequentialThinkingServer {
16 private thoughtHistory: ThoughtData[] = [];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected