submit_story
Submit a story activity draft to the Activity Reporting MCP Server, including title, description, date, significance, metrics, and optional tags or links for reporting developer activities.
Instructions
Submit a story activity draft
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activityDate | Yes | Activity Date (YYYY-MM-DD format) | |
activityUrl | Yes | Link | |
additionalInfo | No | Additional information (optional) | |
description | Yes | Description | |
metrics | Yes | ||
private | No | Do you want to make this activity private? (optional) | |
significanceType | Yes | Significance type | |
tags | No | Tags (optional) | |
title | Yes | Title of the story | |
whyIsSignificant | Yes | Why is it significant |
Input Schema (JSON Schema)
{
"properties": {
"activityDate": {
"description": "Activity Date (YYYY-MM-DD format)",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"activityUrl": {
"description": "Link",
"maxLength": 500,
"pattern": "^https?://.*",
"type": "string"
},
"additionalInfo": {
"description": "Additional information (optional)",
"maxLength": 2000,
"type": "string"
},
"description": {
"description": "Description",
"maxLength": 2000,
"type": "string"
},
"metrics": {
"properties": {
"impact": {
"description": "Impact (views, reads, attendees, etc.)",
"minimum": 1,
"type": "integer"
}
},
"required": [
"impact"
],
"type": "object"
},
"private": {
"description": "Do you want to make this activity private? (optional)",
"type": "boolean"
},
"significanceType": {
"description": "Significance type",
"enum": [
"Diversity & Inclusion",
"Helping Business",
"Social Impact",
"Feedback to Google",
"Community Leading",
"Technology / Open source"
],
"type": "string"
},
"tags": {
"description": "Tags (optional)",
"items": {
"type": "string"
},
"minItems": 0,
"type": "array"
},
"title": {
"description": "Title of the story",
"maxLength": 200,
"minLength": 3,
"type": "string"
},
"whyIsSignificant": {
"description": "Why is it significant",
"maxLength": 2000,
"type": "string"
}
},
"required": [
"title",
"description",
"activityDate",
"whyIsSignificant",
"significanceType",
"activityUrl",
"metrics"
],
"type": "object"
}