Skip to main content
Glama
Seitrace

Seitrace Insights MCP Server

Official
by Seitrace
definition.ts1.5 kB
import { McpToolDefinition } from '../../../../types.js'; // Short, LLM-friendly description of this resource export const RESOURCE_DESCRIPTION = 'Request test native SEI on arctic-1(devnet) or atlantic-2(testnet) (rate-limited).'; /** * Faucet endpoint definition * Controller/action key format: <ControllerName>-<ActionNameCamel> * We use FaucetController-postFaucet so the resource tool name becomes `general_faucet`. */ export const endpointDefinitionMap: Map<string, McpToolDefinition> = new Map([ [ 'FaucetController-requestFaucet', { name: 'FaucetController-requestFaucet', description: 'Request faucet funds (limited to once every 24h per API key). Available chains: arctic-1, atlantic-2. Wont support snippet generation.', inputSchema: { type: 'object', properties: { wallet_address: { type: 'string', description: 'EVM wallet address' }, chain_id: { type: 'string', description: 'Target chain ID', enum: ['arctic-1', 'atlantic-2'], }, }, required: ['wallet_address', 'chain_id'], additionalProperties: false, }, method: 'post', pathTemplate: '/api/v1/mcp/faucet', // No path/query/header parameters; body carries the inputs executionParameters: [], requestBodyContentType: 'application/json', securityRequirements: [{ apiKey: [] }], executor: 'api', snippetGenerator: null, }, ], ]);

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/Seitrace/seitrace-mcp'

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