We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/a-bonus/google-docs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•619 B
import type { FastMCP } from 'fastmcp';
import { register as listComments } from './listComments.js';
import { register as getComment } from './getComment.js';
import { register as addComment } from './addComment.js';
import { register as replyToComment } from './replyToComment.js';
import { register as resolveComment } from './resolveComment.js';
import { register as deleteComment } from './deleteComment.js';
export function registerCommentTools(server: FastMCP) {
listComments(server);
getComment(server);
addComment(server);
replyToComment(server);
resolveComment(server);
deleteComment(server);
}