Skip to main content
Glama
ErickWendel

Erick Wendel Contributions MCP

by ErickWendel
index.ts1.26 kB
// @ts-nocheck import type { QueryGenqlSelection, Query } from './schema.ts' import { linkTypeMap, createClient as createClientOriginal, generateGraphqlOperation, type FieldsSelection, type GraphqlOperation, type ClientOptions, GenqlError, } from './runtime/index.ts' export type { FieldsSelection } from './runtime/index.ts' export { GenqlError } import types from './types.ts' export * from './schema.ts' const typeMap = linkTypeMap(types as any) export interface Client { query<R extends QueryGenqlSelection>( request: R & { __name?: string }, ): Promise<FieldsSelection<Query, R>> } export const createClient = function (options?: ClientOptions): Client { return createClientOriginal({ url: 'https://tml-api.herokuapp.com/graphql', ...options, queryRoot: typeMap.Query!, mutationRoot: typeMap.Mutation!, subscriptionRoot: typeMap.Subscription!, }) as any } export const everything = { __scalar: true, } export type QueryResult<fields extends QueryGenqlSelection> = FieldsSelection< Query, fields > export const generateQueryOp: ( fields: QueryGenqlSelection & { __name?: string }, ) => GraphqlOperation = function (fields) { return generateGraphqlOperation('query', typeMap.Query!, fields as any) }

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/ErickWendel/erickwendel-contributions-mcp'

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