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
1 change: 1 addition & 0 deletions src/everything/tools/echo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const config = {
title: "Echo Tool",
description: "Echoes back the input string",
inputSchema: EchoSchema,
annotations: { readOnlyHint: true },
};

/**
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/get-annotated-message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const config = {
description:
"Demonstrates how annotations can be used to provide metadata about content.",
inputSchema: GetAnnotatedMessageSchema,
annotations: { readOnlyHint: true },
};

/**
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/get-env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const config = {
description:
"Returns all environment variables, helpful for debugging MCP server configuration",
inputSchema: {},
annotations: { readOnlyHint: true },
};

/**
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/get-resource-links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const config = {
description:
"Returns up to ten resource links that reference different types of resources",
inputSchema: GetResourceLinksSchema,
annotations: { readOnlyHint: true },
};

/**
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/get-resource-reference.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const config = {
title: "Get Resource Reference Tool",
description: "Returns a resource reference that can be used by MCP clients",
inputSchema: GetResourceReferenceSchema,
annotations: { readOnlyHint: true },
};

/**
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/get-roots-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const config = {
description:
"Lists the current MCP roots provided by the client. Demonstrates the roots protocol capability even though this server doesn't access files.",
inputSchema: {},
annotations: { readOnlyHint: true },
};

/**
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/get-structured-content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ const config = {
"Returns structured content along with an output schema for client data validation",
inputSchema: GetStructuredContentInputSchema,
outputSchema: GetStructuredContentOutputSchema,
annotations: { readOnlyHint: true },
};

/**
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/get-sum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const config = {
title: "Get Sum Tool",
description: "Returns the sum of two numbers",
inputSchema: GetSumSchema,
annotations: { readOnlyHint: true },
};

/**
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/get-tiny-image.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const config = {
title: "Get Tiny Image Tool",
description: "Returns a tiny MCP logo image.",
inputSchema: {},
annotations: { readOnlyHint: true },
};

/**
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/gzip-file-as-resource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ const config = {
description:
"Compresses a single file using gzip compression. Depending upon the selected output type, returns either the compressed data as a gzipped resource or a resource link, allowing it to be downloaded in a subsequent request during the current session.",
inputSchema: GZipFileAsResourceSchema,
annotations: { readOnlyHint: false, idempotentHint: true, openWorldHint: true },
};

/**
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/simulate-research-query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ export const registerSimulateResearchQueryTool = (server: McpServer) => {
"Demonstrates MCP task-based operations with progress through multiple stages. " +
"If 'ambiguous' is true and client supports elicitation, sends an elicitation request for clarification.",
inputSchema: SimulateResearchQuerySchema,
annotations: { readOnlyHint: true },
execution: { taskSupport: "required" },
},
{
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/toggle-simulated-logging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const config = {
title: "Toggle Simulated Logging",
description: "Toggles simulated, random-leveled logging on or off.",
inputSchema: {},
annotations: { readOnlyHint: false, destructiveHint: false, idempotentHint: false },
};

// Track enabled clients by session id
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/toggle-subscriber-updates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const config = {
title: "Toggle Subscriber Updates",
description: "Toggles simulated resource subscription updates on or off.",
inputSchema: {},
annotations: { readOnlyHint: false, destructiveHint: false, idempotentHint: false },
};

// Track enabled clients by session id
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/trigger-elicitation-request-async.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const config = {
"Demonstrates bidirectional MCP tasks where the server sends an elicitation request and " +
"the client handles user input asynchronously, allowing the server to poll for completion.",
inputSchema: {},
annotations: { readOnlyHint: false, destructiveHint: false },
};

// Poll interval in milliseconds
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/trigger-elicitation-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const config = {
title: "Trigger Elicitation Request Tool",
description: "Trigger a Request from the Server for User Elicitation",
inputSchema: {},
annotations: { readOnlyHint: false, destructiveHint: false },
};

/**
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/trigger-long-running-operation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const config = {
title: "Trigger Long Running Operation Tool",
description: "Demonstrates a long running operation with progress updates.",
inputSchema: TriggerLongRunningOperationSchema,
annotations: { readOnlyHint: true },
};

/**
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/trigger-sampling-request-async.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const config = {
"Demonstrates bidirectional MCP tasks where the server sends a request and the client " +
"executes it asynchronously, allowing the server to poll for progress and results.",
inputSchema: TriggerSamplingRequestAsyncSchema,
annotations: { readOnlyHint: false, destructiveHint: false },
};

// Poll interval in milliseconds
Expand Down
1 change: 1 addition & 0 deletions src/everything/tools/trigger-sampling-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const config = {
title: "Trigger Sampling Request Tool",
description: "Trigger a Request from the Server for LLM Sampling",
inputSchema: TriggerSamplingRequestSchema,
annotations: { readOnlyHint: false, destructiveHint: false },
};

/**
Expand Down
Loading