/**
* @fileoverview Base interface for activity drafts
* @description Common properties shared by all activity draft types
*/
/**
* Base interface for all activity drafts
* Contains the common properties that all activity types must have
*/
export interface ActivityDraftBase {
/** Title of the activity */
title: string;
/** Description of what the activity was about */
description: string;
/** Date when the activity took place (YYYY-MM-DD format) */
activityDate: string;
/** Optional tags to categorize the activity */
tags?: string[];
/** Optional additional information about the activity */
additionalInfo?: string;
/** Whether to make the activity private (defaults to false) */
private?: boolean;
}
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/carlosazaustre/advocu-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server