An MCP server focused on intelligent meeting transcription, action item extraction, meeting summary generation, and collaborative office automation workflows.
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"
}
}
}
}