list_configured_websites
Retrieve a list of websites configured for content fetching and conversion to Markdown format with AI-powered cleanup and ad removal.
Instructions
List all configured websites
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:715-728 (handler)The handler logic for the 'list_configured_websites' tool. It formats the list of configured websites from config.websites into a markdown response.if (name === 'list_configured_websites') { const websiteList = config.websites.map(site => `- **${site.name}**: ${site.url}${site.description ? ` - ${site.description}` : ''}` ).join('\n'); return { content: [ { type: 'text', text: `# Configured Websites\n\n${websiteList}\n\nYou can:\n1. Ask any question directly, I will automatically search relevant websites\n2. Use \`fetch_website\` tool to fetch specific websites\n3. Use corresponding dedicated tools to fetch configured websites` } ] }; }
- src/index.ts:560-568 (registration)Registration of the 'list_configured_websites' tool in the tools array returned by listTools handler, including schema.{ name: 'list_configured_websites', description: 'List all configured websites', inputSchema: { type: 'object', properties: {} } } ];
- src/index.ts:563-567 (schema)Input schema for the 'list_configured_websites' tool, which requires no parameters.inputSchema: { type: 'object', properties: {} } }