Skip to main content
Glama

Wanaku MCP Server

router.tsx1.02 kB
import { createHashRouter } from "react-router-dom"; import App from "./App"; import { ErrorPage } from "./Pages/Error"; import { Links } from "./router/links.models"; export const router = createHashRouter([ { path: Links.Home, element: <App />, errorElement: <ErrorPage />, children: [ { index: true, lazy: async () => import("./Pages/Dashboard"), }, { path: Links.Tools, lazy: async () => import("./Pages/Tools"), }, { path: Links.Resources, lazy: async () => import("./Pages/Resources"), }, { path: Links.LLMChat, lazy: async () => import("./Pages/LLMChat"), }, { path: Links.Capabilities, lazy: async () => import("./Pages/Targets"), }, { path: Links.Namespaces, lazy: async () => import("./Pages/Namespaces"), }, { path: Links.Forwards, lazy: async () => import("./Pages/Forwards"), }, ], }, ]);

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/wanaku-ai/wanaku'

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