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 CreateNoteResponse = { createNote: { clientMutationId: string note: { id: string title: string content: string url: string } } } type CreateNoteVariables = { input: { clientMutationId: string title: string content: string coediting: boolean groupIds: string[] folders?: string[] authorId?: string draft?: boolean } } const createNoteMutation: TypedDocumentNode<CreateNoteResponse, CreateNoteVariables> = gql` mutation CreateNote($input: CreateNoteInput!) { createNote(input: $input) { clientMutationId note { id title content url } } } ` export async function createNote(variables: CreateNoteVariables): Promise<CreateNoteResponse> { return gqlRequest(createNoteMutation, 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