Skip to main content
Glama

Veri5ight MCP Server

by 5ajaki
anonymous.ts666 B
import { Coder } from "./abstract-coder.js"; import type { Reader, Writer } from "./abstract-coder.js"; /** * Clones the functionality of an existing Coder, but without a localName * * @_ignore */ export class AnonymousCoder extends Coder { private coder: Coder; constructor(coder: Coder) { super(coder.name, coder.type, "_", coder.dynamic); this.coder = coder; } defaultValue(): any { return this.coder.defaultValue(); } encode(writer: Writer, value: any): number { return this.coder.encode(writer, value); } decode(reader: Reader): any { return this.coder.decode(reader); } }

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/5ajaki/veri5ight'

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