Productivity
Document Summarizer
Produces structured summaries, key points, and action items from long-form documents, reports, and transcripts.
nlpsummarizationproductivitydocuments
Version
0.3.0
Author
ManjuLAB
MCP Server
Standalone
Input Schema
{
"type": "object",
"properties": {
"content": {
"type": "string"
},
"format": {
"type": "string",
"enum": [
"bullets",
"prose",
"table"
]
}
},
"required": [
"content"
]
}Output Schema
{
"type": "object",
"properties": {
"summary": {
"type": "string"
},
"keyPoints": {
"type": "array"
},
"actionItems": {
"type": "array"
}
}
}Demo mode: This is a static preview. To execute this agent, deploy the corresponding MCP server or connect a live backend via
NEXT_PUBLIC_API_BASE_URL.