Skip to content

MCP Tools Reference

Sciorex exposes 59 tools across 6 built-in MCP (Model Context Protocol) servers, giving AI models deep integration with every part of the platform. Models can manage tickets, search research papers, annotate PDFs, compile LaTeX, handle secrets, and orchestrate workflows — all autonomously.

Overview

ServerToolsPurpose
sciorex-research16Paper discovery, reference management, LaTeX compilation, PDF annotation
sciorex-tickets23Ticket CRUD, Kanban management, comments, labels, linking
sciorex-resources11File management, agent/flow execution, schema introspection
sciorex-interactions4User prompts, notifications, approvals, split panel views
sciorex-secrets4Secure credential storage and retrieval
sciorex-permissions1Tool execution approval gating

Built-in Claude Tools

In addition to MCP servers, Sciorex provides these built-in tools to all AI models:

ToolDescription
ReadRead files from the local filesystem
WriteWrite files to the local filesystem
EditPerform exact string replacements in files
BashExecute shell commands with optional timeout
GlobFast file pattern matching (e.g., **/*.ts)
GrepContent search powered by ripgrep
TodoWriteStructured task list management
SendMessageInter-agent messaging for Agent Teams

sciorex-research Server

The research server provides 16 tools for paper discovery, reference management, LaTeX editing, PDF annotation, and citation management. It integrates with 14 external sources for paper discovery and supports 43 Zotero-compatible item types.

sciorex_search_papers

Search for academic papers across multiple sources.

Parameters:

ParameterTypeRequiredDescription
querystringYesSearch query string
sourcestringNoSource to search. One of: semantic_scholar, arxiv, pubmed, crossref, openalex, dblp, core, unpaywall, base, dimensions, google_scholar, ieee, scopus, web_of_science. Defaults to semantic_scholar.
limitnumberNoMaximum number of results to return (default: 10, max: 100)
offsetnumberNoPagination offset (default: 0)
year_fromnumberNoFilter papers published from this year
year_tonumberNoFilter papers published up to this year
sort_bystringNoSort order: relevance, date, citations (default: relevance)

Returns: Array of paper objects with title, authors, abstract, DOI, URL, year, citation count, and source metadata.


sciorex_get_paper_details

Get detailed metadata for a specific paper.

Parameters:

ParameterTypeRequiredDescription
paper_idstringYesPaper identifier (DOI, arXiv ID, Semantic Scholar ID, or URL)
sourcestringNoSource to query (default: auto-detect from ID format)

Returns: Full paper metadata including title, authors with affiliations, abstract, publication venue, year, DOI, references, citation count, and available full-text URLs.


sciorex_get_citations

Get papers that cite a given paper.

Parameters:

ParameterTypeRequiredDescription
paper_idstringYesPaper identifier (DOI, arXiv ID, or Semantic Scholar ID)
limitnumberNoMaximum results (default: 10, max: 100)
offsetnumberNoPagination offset (default: 0)

Returns: Array of citing papers with metadata.


sciorex_get_references

Get papers referenced by a given paper.

Parameters:

ParameterTypeRequiredDescription
paper_idstringYesPaper identifier (DOI, arXiv ID, or Semantic Scholar ID)
limitnumberNoMaximum results (default: 10, max: 100)
offsetnumberNoPagination offset (default: 0)

Returns: Array of referenced papers with metadata.


sciorex_add_reference

Add a reference to the local reference library.

Parameters:

ParameterTypeRequiredDescription
item_typestringYesZotero-compatible item type. One of 43 types including: journalArticle, book, bookSection, conferencePaper, thesis, report, patent, webpage, preprint, dataset, software, presentation, letter, manuscript, interview, film, podcast, videoRecording, audioRecording, artwork, map, statute, case, bill, hearing, newspaperArticle, magazineArticle, blogPost, forumPost, encyclopediaArticle, dictionaryEntry, instantMessage, email, attachment, note, annotation, computerProgram, standard, tvBroadcast, radioBroadcast, document, classic, periodical
titlestringYesTitle of the reference
authorsarrayNoArray of author objects: [{ "firstName": "", "lastName": "" }]
yearnumberNoPublication year
doistringNoDigital Object Identifier
urlstringNoURL of the resource
abstractstringNoAbstract text
journalstringNoJournal or venue name
volumestringNoVolume number
issuestringNoIssue number
pagesstringNoPage range (e.g., "1-15")
publisherstringNoPublisher name
tagsarrayNoArray of tag strings
collection_idstringNoID of collection to add reference to
extra_fieldsobjectNoAdditional Zotero-compatible fields

Returns: Created reference object with generated ID.


sciorex_search_references

Search the local reference library.

Parameters:

ParameterTypeRequiredDescription
querystringYesSearch query (searches title, authors, abstract, tags)
item_typestringNoFilter by item type
collection_idstringNoFilter by collection
tagsarrayNoFilter by tags (AND logic)
year_fromnumberNoFilter by year range start
year_tonumberNoFilter by year range end
limitnumberNoMaximum results (default: 20)
offsetnumberNoPagination offset (default: 0)

Returns: Array of matching references from the library.


sciorex_update_reference

Update an existing reference in the library.

Parameters:

ParameterTypeRequiredDescription
reference_idstringYesID of the reference to update
fieldsobjectYesObject of fields to update (same fields as sciorex_add_reference)

Returns: Updated reference object.


sciorex_delete_reference

Delete a reference from the library.

Parameters:

ParameterTypeRequiredDescription
reference_idstringYesID of the reference to delete

Returns: Confirmation of deletion.


sciorex_generate_citation

Generate a formatted citation string for a reference.

Parameters:

ParameterTypeRequiredDescription
reference_idstringYesID of the reference to cite
stylestringNoCitation style. One of 11 styles: apa, mla, chicago, harvard, ieee, vancouver, nature, science, cell, bibtex, biblatex (default: apa)

Returns: Formatted citation string in the requested style.


sciorex_generate_bibliography

Generate a formatted bibliography from multiple references.

Parameters:

ParameterTypeRequiredDescription
reference_idsarrayYesArray of reference IDs to include
stylestringNoCitation style (same options as sciorex_generate_citation, default: apa)
sort_bystringNoSort order: author, year, title (default: author)

Returns: Formatted bibliography string.


sciorex_export_references

Export references in various formats.

Parameters:

ParameterTypeRequiredDescription
reference_idsarrayYesArray of reference IDs to export (or ["*"] for all)
formatstringYesExport format. One of 5 formats: bibtex, biblatex, ris, csv, json
collection_idstringNoExport all references in a collection (alternative to reference_ids)

Returns: Exported data as a string in the requested format.


sciorex_import_references

Import references from external formats or sources.

Parameters:

ParameterTypeRequiredDescription
sourcestringYesImport source. One of 14 sources: bibtex, biblatex, ris, csv, json, doi, arxiv, pubmed, isbn, url, pdf_metadata, crossref, zotero_api, mendeley_api
datastringYesThe import data (file content, DOI string, URL, etc.)
collection_idstringNoCollection to import references into
duplicate_strategystringNoHow to handle duplicates: skip, merge, create (default: skip)

Returns: Array of imported reference objects with status per item.


sciorex_compile_latex

Compile a LaTeX document to PDF.

Parameters:

ParameterTypeRequiredDescription
file_pathstringYesAbsolute path to the main .tex file
enginestringNoLaTeX engine: pdflatex, xelatex, lualatex (default: pdflatex)
bibliographybooleanNoWhether to run BibTeX/Biber (default: false)
cleanbooleanNoRemove auxiliary files after compilation (default: false)

Returns: Object with success status, output PDF path, compilation log, and any errors/warnings.


sciorex_annotate_pdf

Add annotations to a PDF document.

Parameters:

ParameterTypeRequiredDescription
file_pathstringYesAbsolute path to the PDF file
annotationsarrayYesArray of annotation objects
annotations[].typestringYesAnnotation type: highlight, underline, strikethrough, note, text, rectangle, freeform
annotations[].pagenumberYesPage number (1-indexed)
annotations[].contentstringNoText content for notes/text annotations
annotations[].colorstringNoColor in hex format (default: #FFFF00)
annotations[].coordinatesobjectNoPosition: { x, y, width, height } in PDF points
annotations[].quad_pointsarrayNoFor highlight/underline: array of quad point arrays

Returns: Updated annotation list with generated IDs.


sciorex_get_pdf_annotations

Retrieve annotations from a PDF document.

Parameters:

ParameterTypeRequiredDescription
file_pathstringYesAbsolute path to the PDF file
pagenumberNoFilter annotations by page number
typestringNoFilter by annotation type

Returns: Array of annotation objects with type, content, page, color, coordinates, and timestamps.


sciorex_extract_pdf_text

Extract text content from a PDF document.

Parameters:

ParameterTypeRequiredDescription
file_pathstringYesAbsolute path to the PDF file
pagesstringNoPage range (e.g., "1-5", "3", "1,3,5-7"). Defaults to all pages.
formatstringNoOutput format: plain, structured, markdown (default: plain)

Returns: Extracted text content in the requested format. Structured format includes page breaks and paragraph detection.


sciorex-tickets Server

The tickets server provides 23 tools for full project management, including ticket CRUD, Kanban boards, comments, labels, and resource linking.

sciorex_create_ticket

Create a new ticket.

Parameters:

ParameterTypeRequiredDescription
titlestringYesTicket title
descriptionstringNoTicket description (supports Markdown)
statusstringNoStatus: backlog, todo, in_progress, in_review, done, cancelled (default: todo)
prioritystringNoPriority: none, low, medium, high, urgent (default: none)
assigneestringNoAssignee username or ID
labelsarrayNoArray of label IDs or names
due_datestringNoDue date in ISO 8601 format
parent_idstringNoParent ticket ID for sub-tasks
board_idstringNoKanban board ID
estimatenumberNoStory point estimate
sprint_idstringNoSprint ID to assign to

Returns: Created ticket object with generated ID.


sciorex_get_ticket

Get a ticket by ID.

Parameters:

ParameterTypeRequiredDescription
ticket_idstringYesTicket ID
include_commentsbooleanNoInclude comments (default: false)
include_historybooleanNoInclude change history (default: false)
include_linksbooleanNoInclude linked resources (default: false)

Returns: Full ticket object with optional related data.


sciorex_update_ticket

Update an existing ticket.

Parameters:

ParameterTypeRequiredDescription
ticket_idstringYesTicket ID to update
titlestringNoNew title
descriptionstringNoNew description
statusstringNoNew status
prioritystringNoNew priority
assigneestringNoNew assignee
labelsarrayNoUpdated label list
due_datestringNoNew due date
estimatenumberNoNew story point estimate
sprint_idstringNoMove to different sprint

Returns: Updated ticket object.


sciorex_delete_ticket

Delete a ticket permanently.

Parameters:

ParameterTypeRequiredDescription
ticket_idstringYesTicket ID to delete
delete_subtasksbooleanNoAlso delete sub-tasks (default: false)

Returns: Confirmation of deletion.


sciorex_list_tickets

List tickets with filtering and pagination.

Parameters:

ParameterTypeRequiredDescription
board_idstringNoFilter by board
statusstringNoFilter by status
prioritystringNoFilter by priority
assigneestringNoFilter by assignee
labelstringNoFilter by label
sprint_idstringNoFilter by sprint
parent_idstringNoFilter by parent (get sub-tasks)
searchstringNoFull-text search in title and description
sort_bystringNoSort: created, updated, priority, due_date, title (default: updated)
sort_orderstringNoasc or desc (default: desc)
limitnumberNoMaximum results (default: 50)
offsetnumberNoPagination offset (default: 0)

Returns: Array of ticket objects with total count.


sciorex_search_tickets

Full-text search across all tickets.

Parameters:

ParameterTypeRequiredDescription
querystringYesSearch query
board_idstringNoLimit search to a board
include_archivedbooleanNoInclude archived tickets (default: false)
limitnumberNoMaximum results (default: 20)

Returns: Array of matching tickets with relevance scores.


sciorex_add_comment

Add a comment to a ticket.

Parameters:

ParameterTypeRequiredDescription
ticket_idstringYesTicket ID
contentstringYesComment text (supports Markdown)
authorstringNoAuthor name (default: current AI model name)

Returns: Created comment object with ID and timestamp.


sciorex_list_comments

List comments on a ticket.

Parameters:

ParameterTypeRequiredDescription
ticket_idstringYesTicket ID
sort_orderstringNoasc or desc (default: asc)
limitnumberNoMaximum results (default: 50)
offsetnumberNoPagination offset (default: 0)

Returns: Array of comment objects.


sciorex_update_comment

Update an existing comment.

Parameters:

ParameterTypeRequiredDescription
comment_idstringYesComment ID
contentstringYesUpdated comment text

Returns: Updated comment object.


sciorex_delete_comment

Delete a comment from a ticket.

Parameters:

ParameterTypeRequiredDescription
comment_idstringYesComment ID to delete

Returns: Confirmation of deletion.


sciorex_create_board

Create a new Kanban board.

Parameters:

ParameterTypeRequiredDescription
namestringYesBoard name
descriptionstringNoBoard description
columnsarrayNoCustom column definitions. Default: ["Backlog", "To Do", "In Progress", "In Review", "Done"]
default_assigneestringNoDefault assignee for new tickets

Returns: Created board object with ID.


sciorex_list_boards

List all Kanban boards.

Parameters:

ParameterTypeRequiredDescription
include_ticket_countsbooleanNoInclude per-column ticket counts (default: false)

Returns: Array of board objects.


sciorex_move_ticket

Move a ticket between columns or boards.

Parameters:

ParameterTypeRequiredDescription
ticket_idstringYesTicket ID to move
statusstringNoNew status/column
board_idstringNoMove to different board
positionnumberNoPosition within the column (0-indexed)

Returns: Updated ticket object.


sciorex_create_label

Create a new label.

Parameters:

ParameterTypeRequiredDescription
namestringYesLabel name
colorstringNoLabel color in hex (e.g., #FF5733)
descriptionstringNoLabel description

Returns: Created label object with ID.


sciorex_list_labels

List all available labels.

Parameters:

ParameterTypeRequiredDescription
board_idstringNoFilter labels by board

Returns: Array of label objects.


sciorex_add_label_to_ticket

Add a label to a ticket.

Parameters:

ParameterTypeRequiredDescription
ticket_idstringYesTicket ID
label_idstringYesLabel ID to add

Returns: Updated ticket labels array.


sciorex_remove_label_from_ticket

Remove a label from a ticket.

Parameters:

ParameterTypeRequiredDescription
ticket_idstringYesTicket ID
label_idstringYesLabel ID to remove

Returns: Updated ticket labels array.


sciorex_create_sprint

Create a new sprint.

Parameters:

ParameterTypeRequiredDescription
namestringYesSprint name
board_idstringYesBoard ID the sprint belongs to
start_datestringNoStart date in ISO 8601 format
end_datestringNoEnd date in ISO 8601 format
goalstringNoSprint goal description

Returns: Created sprint object with ID.


sciorex_list_sprints

List sprints for a board.

Parameters:

ParameterTypeRequiredDescription
board_idstringYesBoard ID
statusstringNoFilter by status: planning, active, completed
include_ticket_countsbooleanNoInclude ticket count per sprint (default: false)

Returns: Array of sprint objects.


sciorex_get_ticket_history

Get the change history of a ticket.

Parameters:

ParameterTypeRequiredDescription
ticket_idstringYesTicket ID
limitnumberNoMaximum entries (default: 50)

Returns: Array of history entries with field, old value, new value, author, and timestamp.


sciorex_bulk_update_tickets

Update multiple tickets at once.

Parameters:

ParameterTypeRequiredDescription
ticket_idsarrayYesArray of ticket IDs to update
fieldsobjectYesFields to update (same options as sciorex_update_ticket)

Returns: Array of updated ticket objects.


Link an external resource to a ticket.

Parameters:

ParameterTypeRequiredDescription
ticket_idstringYesTicket ID to link to
resource_typestringYesType of resource: file, reference, url, chat_thread, flow, agent
resource_idstringYesID or path of the resource to link
labelstringNoDisplay label for the link
descriptionstringNoDescription of the relationship

Returns: Created link object with ID.


Remove a linked resource from a ticket.

Parameters:

ParameterTypeRequiredDescription
ticket_idstringYesTicket ID
link_idstringYesLink ID to remove (from sciorex_link_resource response)

Returns: Confirmation of deletion.


sciorex-resources Server

The resources server provides 11 tools for file management, agent and flow execution, and schema introspection.

sciorex_list_files

List files and directories in a given path.

Parameters:

ParameterTypeRequiredDescription
pathstringYesDirectory path to list
recursivebooleanNoList recursively (default: false)
patternstringNoGlob pattern filter (e.g., *.ts)
include_hiddenbooleanNoInclude hidden files (default: false)
limitnumberNoMaximum entries (default: 100)

Returns: Array of file/directory entries with name, path, type, size, and modification time.


sciorex_read_file

Read the contents of a file.

Parameters:

ParameterTypeRequiredDescription
pathstringYesAbsolute file path
encodingstringNoFile encoding (default: utf-8)
line_startnumberNoStart reading from this line (1-indexed)
line_endnumberNoStop reading at this line

Returns: File content as a string with metadata (size, line count, encoding).


sciorex_write_file

Write content to a file.

Parameters:

ParameterTypeRequiredDescription
pathstringYesAbsolute file path
contentstringYesContent to write
encodingstringNoFile encoding (default: utf-8)
create_dirsbooleanNoCreate parent directories if they don't exist (default: true)
overwritebooleanNoOverwrite existing file (default: true)

Returns: Confirmation with file path and bytes written.


sciorex_delete_file

Delete a file or directory.

Parameters:

ParameterTypeRequiredDescription
pathstringYesAbsolute path to delete
recursivebooleanNoRequired for non-empty directories (default: false)

Returns: Confirmation of deletion.


sciorex_copy_file

Copy a file or directory.

Parameters:

ParameterTypeRequiredDescription
sourcestringYesSource path
destinationstringYesDestination path
overwritebooleanNoOverwrite existing (default: false)

Returns: Confirmation with destination path.


sciorex_move_file

Move or rename a file or directory.

Parameters:

ParameterTypeRequiredDescription
sourcestringYesSource path
destinationstringYesDestination path
overwritebooleanNoOverwrite existing (default: false)

Returns: Confirmation with new path.


sciorex_search_files

Search for files by name pattern or content.

Parameters:

ParameterTypeRequiredDescription
pathstringYesRoot directory to search from
querystringYesSearch query (file name pattern or content string)
search_typestringNoname or content (default: name)
patternstringNoGlob pattern to filter files
max_depthnumberNoMaximum directory depth
limitnumberNoMaximum results (default: 50)

Returns: Array of matching file paths with context.


sciorex_get_file_info

Get metadata about a file or directory.

Parameters:

ParameterTypeRequiredDescription
pathstringYesAbsolute path

Returns: Object with name, path, type, size, created, modified, permissions, and MIME type.


sciorex_execute_agent

Execute an AI agent configuration.

Parameters:

ParameterTypeRequiredDescription
agent_idstringYesID of the saved agent configuration to execute
inputstringYesInput prompt or message to send to the agent
contextobjectNoAdditional context variables to pass to the agent
timeoutnumberNoExecution timeout in milliseconds (default: 300000)
streambooleanNoWhether to stream the response (default: false)

Returns: Agent execution result including output text, token usage, and execution metadata.


sciorex_execute_flow

Execute a visual flow (workflow).

Parameters:

ParameterTypeRequiredDescription
flow_idstringYesID of the flow to execute
inputsobjectNoInput variables for the flow trigger node
timeoutnumberNoExecution timeout in milliseconds (default: 600000)
dry_runbooleanNoValidate flow without executing (default: false)

Returns: Flow execution result including node-by-node output, final result, execution time, and any errors.


sciorex_get_schema

Get the schema definition for a resource type.

Parameters:

ParameterTypeRequiredDescription
resource_typestringYesResource type to get schema for: ticket, board, sprint, label, comment, reference, collection, annotation, agent, flow, persona
formatstringNoSchema format: json_schema, typescript, table (default: json_schema)

Returns: Schema definition in the requested format, including all fields, types, required flags, and validation rules.


sciorex-interactions Server

The interactions server provides 4 tools for communicating with the user through the Sciorex UI.

sciorex_ask_user

Ask the user a question and wait for their response. Supports structured input with radio buttons, checkboxes, or free text.

Parameters:

ParameterTypeRequiredDescription
questionstringYesThe question to ask the user
responseTypestringNoInput type: single (radio buttons), multiple (checkboxes), text (textarea). Default: text
optionsarrayNoPredefined options for single or multiple response types
allowCustomTextbooleanNoShow a textarea for custom input in addition to options (default: true)
placeholderstringNoPlaceholder text for the textarea
contextstringNoAdditional context to help the user understand the question
urgencystringNoHow critical: blocking, important, optional (default: important)

Returns: User's response text and/or selected options.


sciorex_notify_user

Send a notification to the user without waiting for a response. Useful for status updates, warnings, or informational messages.

Parameters:

ParameterTypeRequiredDescription
messagestringYesThe notification message
typestringNoNotification type: info, warning, error, success (default: info)
detailsstringNoAdditional details about the notification

Returns: Confirmation that the notification was sent.


sciorex_request_approval

Request explicit approval from the user before proceeding with an action. Blocks until the user approves or rejects.

Parameters:

ParameterTypeRequiredDescription
actionstringYesDescription of what you want to do
reasonstringYesWhy this action is needed
impactstringNoImpact level: low, medium, high (default: medium)
alternativesarrayNoAlternative actions if this is rejected

Returns: Boolean approval status and optional user feedback.


sciorex_set_view_mode

Open a split panel next to the chat to display content. Supports 11 viewer types for different file formats and use cases.

Parameters:

ParameterTypeRequiredDescription
viewModestringYesThe split panel to open. One of 11 modes: normal (close panel), agentic (multi-file diff review), editor (Monaco code editor), preview (live browser preview), pdf (PDF viewer with annotations), markdown (rendered Markdown), html (sandboxed HTML preview), image (image viewer), bibtex (BibTeX citation viewer), molecule (3D molecular structure viewer for PDB/SDF/MOL/XYZ), excalidraw (whiteboard/drawing editor)
urlstringNoFor preview mode: an http(s) URL. For file-based panels: a file:///absolute/path URL. If omitted, opens a file picker.
sessionIdstringNoOptional session ID to target a specific chat session

Returns: Confirmation that the view mode was set.

View Mode Details

ModeDescriptionURL Format
normalCloses the split panel, returns to standard chatN/A
agenticMulti-file diff review panel for code changesN/A
editorMonaco code editor with syntax highlightingfile:///path/to/file
previewLive browser preview (hot-reloading)http(s)://url
pdfPDF viewer with annotations, search, thumbnailsfile:///path/to/file.pdf
markdownRendered Markdown previewfile:///path/to/file.md
htmlSandboxed HTML previewfile:///path/to/file.html
imageImage viewer (PNG, JPG, SVG, etc.)file:///path/to/image
bibtexBibTeX citation viewer and editorfile:///path/to/refs.bib
molecule3D molecular structure viewerfile:///path/to/structure.pdb
excalidrawWhiteboard and drawing editorfile:///path/to/drawing.excalidraw

sciorex-secrets Server

The secrets server provides 4 tools for secure credential storage and retrieval. All secrets are encrypted at rest and never exposed in logs or chat history.

sciorex_set_secret

Store a secret value securely.

Parameters:

ParameterTypeRequiredDescription
keystringYesSecret key name (e.g., OPENAI_API_KEY, GITHUB_TOKEN)
valuestringYesSecret value to store (encrypted at rest)
descriptionstringNoHuman-readable description of what this secret is for
categorystringNoCategory for organization: api_key, token, password, certificate, other (default: other)

Returns: Confirmation with key name (value is never returned).


sciorex_get_secret

Retrieve a secret value.

Parameters:

ParameterTypeRequiredDescription
keystringYesSecret key name to retrieve

Returns: The decrypted secret value. Note: This tool requires explicit user approval via sciorex-permissions before execution.


sciorex_list_secrets

List all stored secret keys (values are never shown).

Parameters:

ParameterTypeRequiredDescription
categorystringNoFilter by category

Returns: Array of secret entries with key name, description, category, and last-modified timestamp. Values are never included.


sciorex_delete_secret

Delete a stored secret.

Parameters:

ParameterTypeRequiredDescription
keystringYesSecret key name to delete

Returns: Confirmation of deletion.


sciorex-permissions Server

The permissions server provides a single gating tool that other tools may be routed through for user approval.

approval_prompt

Request user approval before executing a tool. This is used internally by the system to gate sensitive operations (e.g., reading secrets, executing destructive commands).

Parameters:

ParameterTypeRequiredDescription
tool_namestringYesThe name of the tool being requested (e.g., Edit, Bash, Write)
tool_inputobjectYesThe input parameters for the tool
reasonstringNoBrief explanation of why this tool is needed

Returns: Object with approved boolean. If approved, the original tool is executed. If denied, the tool call is blocked.


Tool Count Summary

ServerTools
sciorex-research16
sciorex-tickets23
sciorex-resources11
sciorex-interactions4
sciorex-secrets4
sciorex-permissions1
Total59

Sciorex is proprietary software.