Skip to main content
Glama

Apex MCP for X Management

by xonack
smithery.ts608 B
import { z } from "zod"; import { createMCPServerInstance } from './server.js'; // Configuration schema for Smithery export const configSchema = z.object({ bearerToken: z.string().describe("Enter your Apex Bearer Token"), apiUrl: z.string().describe("Enter your Apex API URL.").default("https://api.apexagents.ai") }); // Smithery-compatible export export default function ({ config }: { config: z.infer<typeof configSchema> }) { const server = createMCPServerInstance(config.bearerToken, config.apiUrl); // Return the underlying server instance as required by Smithery return server.server; }

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/xonack/apex-mcp'

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