Tool-level search

WebMCP tools across the web

Search tool names, descriptions, and input properties — independent of host.

1,216 tools

demos.telerik.com

inventory-sheet-spreadsheet-rename-sheet

Rename a sheet in the Warehouse Capacity spreadsheet. (inventory-sheet spreadsheet)

act imperative requires currentName, newName
demos.telerik.com

inventory-sheet-spreadsheet-export

Export the Warehouse Capacity spreadsheet to an Excel (.xlsx) file. (inventory-sheet spreadsheet)

act imperative
demos.telerik.com

shipment-tracker-grid-filter

Narrow the Shipment Tracker grid to a subset of rows. Use this whenever the user asks to see, show, focus on, or look at shipments matching …

act imperative
demos.telerik.com

shipment-tracker-grid-clear-filter

Remove all active filters from the Shipment Tracker grid. (shipment-tracker grid)

act imperative
demos.telerik.com

shipment-tracker-grid-sort

Sort the Shipment Tracker grid by a column, e.g. Value descending or ETA ascending. (shipment-tracker grid)

act imperative requires field, dir
demos.telerik.com

shipment-tracker-grid-clear-sort

Clear all applied sorts from the grid. (shipment-tracker grid)

act imperative
demos.telerik.com

shipment-tracker-grid-group

Group the grid data by a column field. (shipment-tracker grid)

act imperative requires field
demos.telerik.com

shipment-tracker-grid-clear-group

Clear all applied groups from the grid. (shipment-tracker grid)

act imperative
demos.telerik.com

shipment-tracker-grid-highlight

Visually highlight grid rows or cells that match a condition. This is a standalone visual operation — do NOT call grid-filter beforehand. Sp…

act imperative
demos.telerik.com

shipment-tracker-grid-clear-highlight

Clear all highlighted rows and cells in the grid. (shipment-tracker grid)

act imperative
demos.telerik.com

shipment-tracker-grid-select

Select grid rows or cells that match a condition. This is a standalone operation — do NOT call grid-filter beforehand. Specify field, operat…

act imperative
demos.telerik.com

shipment-tracker-grid-clear-select

Clear all selected rows and cells in the grid. (shipment-tracker grid)

act imperative
demos.telerik.com

shipment-tracker-grid-page

Navigate the grid to a specific page number. (shipment-tracker grid)

act imperative requires page
demos.telerik.com

shipment-tracker-grid-page-size

Change the number of items displayed per page. (shipment-tracker grid)

act imperative requires pageSize
demos.telerik.com

shipment-tracker-grid-column-reorder

Move a grid column to a different position. (shipment-tracker grid)

act imperative requires id, position
demos.telerik.com

shipment-tracker-grid-column-resize

Resize a grid column to a specified width. (shipment-tracker grid)

act imperative requires id, size
demos.telerik.com

shipment-tracker-grid-column-show

Show a hidden grid column. (shipment-tracker grid)

act imperative requires id
demos.telerik.com

shipment-tracker-grid-column-hide

Hide a visible grid column. (shipment-tracker grid)

act imperative requires id
demos.telerik.com

shipment-tracker-grid-column-lock

Lock (freeze) a grid column so it stays visible when scrolling. (shipment-tracker grid)

act imperative requires id
demos.telerik.com

shipment-tracker-grid-column-unlock

Unlock a frozen grid column. (shipment-tracker grid)

act imperative requires id
demos.telerik.com

shipment-tracker-grid-export-excel

Export the grid data to an Excel file. (shipment-tracker grid)

act imperative
demos.telerik.com

shipment-tracker-grid-export-csv

Export the grid data to a CSV file. (shipment-tracker grid)

act imperative
demos.telerik.com

shipment-tracker-gridgetdata

Read the rows currently visible in the Shipment Tracker (after any active filter/sort) as JSON. ALWAYS call this AFTER a Filter step when th…

answer imperative
bandarra.me

list_skills

Lists all skills available in this workspace. Returns an array of { id, name, description } entries. Use read_skill to fetch the full instru…

answer imperative
bandarra.me

read_skill

Returns the full definition of a skill (id, name, description, instructions, optional model) given its id or name. Use this before delegate_…

answer imperative
bandarra.me

read

Reads the complete current editor content.

answer imperative
bandarra.me

read_selection

Reads the currently selected text in the editor.

answer imperative
bandarra.me

search

Finds all occurrences of a query string in the document. Returns the line and column of each match.

answer imperative requires query
bandarra.me

get_metadata

Returns metadata about the current document: character count, word count, and line count.

answer imperative
bandarra.me

get_current_mode

Returns the current UI mode: 'editor' (Monaco editor is visible) or 'preview' (Markdown preview is visible). Check this before making edits …

answer imperative
bandarra.me

request_switch_to_editor

Requests the user to switch from Preview mode to Editor mode. This will display a prompt to the user and pause until they accept or decline.…

act imperative
bandarra.me

edit

Proposes a targeted edit. This tool pauses and waits for user approval. ONLY use this for small, localized changes (e.g., 1-2 sentences). Ne…

act imperative requires originalText, replacementText
bandarra.me

write

Proposes a complete rewrite. This tool pauses and waits for user approval. ONLY use this when the user explicitly requests a total rewrite o…

act imperative requires content
bandarra.me

get_active_doc_info

Returns the id and title of the document currently open in the editor.

answer imperative
bandarra.me

list_workspace_docs

Lists all documents in the workspace. Returns an array of { id, title } objects.

answer imperative
bandarra.me

read_workspace_doc

Reads the full content of a specific document. Returns { title, content } or { error }.

answer imperative requires id
bandarra.me

query_workspace_doc

Asks a question about a specific document using a sub-agent. Returns { summary, excerpt } where excerpt is the most relevant verbatim passag…

answer imperative requires id, query
bandarra.me

query_workspace

Asks a question spanning all workspace documents and synthesizes the results. Returns { summary, sources: [{ id, title, excerpt }] }.

answer imperative requires query
bandarra.me

create_document

Creates a new document in the workspace with the given title and optional initial content. Providing content avoids a separate write step. P…

act imperative requires title
bandarra.me

rename_document

Renames an existing document in the workspace. Pauses for user authorization before renaming.

act imperative requires id, title