Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Current status of Model Context Protocol support
runtools.config.ts
defineTool()
tools/*.ts
runtools deploy
rt.secrets
runtools secret
import { defineTool } from '@runtools-ai/sdk'; export default defineTool({ name: 'custom-search', description: 'Search a private index', actions: { search: { description: 'Search documents', parameters: { type: 'object', properties: { query: { type: 'string' }, }, required: ['query'], }, execute: async (params) => { return { results: [] }; }, }, }, });