Skip to main content
Glama

Search1API MCP Server

trending.ts1.02 kB
import { TrendingArgs, TrendingResponse, isValidTrendingArgs } from '../types.js'; import { makeRequest } from '../api.js'; import { formatError } from '../utils.js'; import { API_CONFIG } from '../config.js'; import { McpError, ErrorCode } from "@modelcontextprotocol/sdk/types.js"; /** * Implementation of the trending tool */ export async function handleTrending(args: unknown) { if (!isValidTrendingArgs(args)) { throw new McpError( ErrorCode.InvalidParams, "Invalid trending arguments" ); } try { const response = await makeRequest<TrendingResponse>( API_CONFIG.ENDPOINTS.TRENDING, args ); return { content: [{ type: "text", mimeType: "application/json", text: JSON.stringify(response.results, null, 2) }] }; } catch (error) { return { content: [{ type: "text", mimeType: "text/plain", text: `Trending API error: ${formatError(error)}` }], isError: true }; } }

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/fatwang2/search1api-mcp'

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