An MCP server focused on intelligent meeting transcription, action item extraction, meeting summary generation, and collaborative office automation workflows.
Overview
Meeting Notes AI MCP
Overview
Meeting Notes AI MCP is an enterprise-grade AI meeting assistant server based on the Model Context Protocol (MCP).
It provides:
- Real-time meeting summarization
- Action item extraction
- Multi-speaker transcript organization
- Office workflow automation
- AI knowledge archiving
Features
Smart Meeting Summary
Automatically generate concise meeting summaries.
Action Item Tracking
Extract TODOs, owners, and deadlines from conversations.
AI Knowledge Base
Archive historical meeting records into searchable knowledge assets.
Multi-language Support
Supports Chinese and English collaborative meetings.
Example Use Cases
- Product requirement review
- Technical architecture discussion
- Daily stand-up meetings
- Client communication records
- Project milestone synchronization
Supported Tools
| Tool | Description |
|---|---|
| summarize_meeting | Generate AI meeting summary |
| extract_todos | Extract action items |
| classify_topics | Topic classification |
| export_markdown | Export markdown report |
Security
- No sensitive local file access
- No arbitrary command execution
- Supports enterprise permission isolation
- API token authentication enabled
License
MIT License
Server Config
{
"mcpServers": {
"meeting-notes-ai": {
"command": "docker",
"args": [
"run",
"--rm",
"-p",
"8080:8080",
"-e",
"OPENAI_API_KEY",
"-e",
"MCP_ENV=production",
"demo/meeting-notes-mcp:latest"
],
"env": {
"OPENAI_API_KEY": "sk-demo-key",
"MCP_ENV": "production"
}
}
}
}