Skip to main content
Glama
praveen030686

@praveen030686/data-apis-mcp

web_extract_ai_summary

Extract content from any URL and generate Claude AI-powered summaries for quick information retrieval and analysis.

Instructions

Extract content from any URL and get a Claude AI-powered summary. Costs $0.15 USDC per request via x402 on Base.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesURL to summarize

Implementation Reference

  • The registration and handler for the web_extract_ai_summary tool. It uses apiPost to call the external service for AI summary extraction.
    server.registerTool(
      "web_extract_ai_summary",
      {
        title: "AI Page Summary",
        description: `Extract content from any URL and get a Claude AI-powered summary.
    Costs $0.15 USDC per request via x402 on Base.`,
        inputSchema: {
          url: z.string().url().describe("URL to summarize"),
        },
        annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true },
      },
      async ({ url }) => {
        const data = await apiPost(`${WEB_EXTRACT_API}/api/v1/extract/ai-summary`, { url });
        return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] };
      }
    );

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/praveen030686/x402-apis-mcp-server'

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