Skip to main content
Glama

MCP Kibela

by kj455
import { TypedDocumentNode } from '@graphql-typed-document-node/core' import { gql } from 'graphql-tag' import { gqlRequest } from '../request' type GetNoteFromPathResponse = { noteFromPath: { id: string title: string content: string } } type GetNoteFromPathVariables = { path: string } const getNoteFromPathQuery: TypedDocumentNode<GetNoteFromPathResponse, GetNoteFromPathVariables> = gql` query GetNoteFromPath($path: String!) { noteFromPath(path: $path) { id title content } } ` export async function getNoteFromPath(variables: GetNoteFromPathVariables): Promise<GetNoteFromPathResponse> { return gqlRequest(getNoteFromPathQuery, variables) }

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/kj455/mcp-kibela'

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