We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Hive-Academy/Anubis-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { z } from 'zod';
// Research Operations Schema - Research reports and communication
export const ResearchOperationsSchema = z.object({
operation: z.enum(['create_research', 'update_research', 'get_research']),
taskId: z.number(),
// For research operations
researchData: z
.object({
title: z.string().optional(),
summary: z.string().optional(),
findings: z.string(),
recommendations: z.string().optional(),
references: z.array(z.string()).optional(),
})
.optional(),
});
export type ResearchOperationsInput = z.infer<typeof ResearchOperationsSchema>;
// Export schema for MCP tool usage
export const ResearchOperationsInputSchema = ResearchOperationsSchema;