Skip to main content
Glama

Basic Math MCP Server

by bahfahh
list.d.ts721 B
type ListNode<T, K> = { key: K; next: undefined | ListNode<T, K>; value: T; }; type RootNode<T, K> = { next: undefined | ListNode<T, K>; }; export function listGetNode<T, K>(list: RootNode<T, K>, key: ListNode<T, K>['key'], isDelete?: boolean): ListNode<T, K> | undefined; export function listGet<T, K>(objects: undefined | RootNode<T, K>, key: ListNode<T, K>['key']): T | undefined; export function listSet<T, K>(objects: RootNode<T, K>, key: ListNode<T, K>['key'], value: T): void; export function listHas<T, K>(objects: undefined | RootNode<T, K>, key: ListNode<T, K>['key']): boolean; export function listDelete<T, K>(objects: undefined | RootNode<T, K>, key: ListNode<T, K>['key']): ListNode<T, K> | undefined;

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/bahfahh/mcptest'

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