Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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: {} } } ];
  • Input schema for the 'list_configured_websites' tool, which requires no parameters.
    inputSchema: { type: 'object', properties: {} } }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/SunZhi-Will/website-to-markdown-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server