minutes-mcp 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +23 -0
- package/dist/index.js +812 -0
- package/dist-ui/index.html +242 -0
- package/package.json +53 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Minutes MCP Server
|
|
4
|
+
*
|
|
5
|
+
* MCP tools for Claude Desktop / Cowork / Dispatch:
|
|
6
|
+
* - start_recording: Start recording audio from the default input device
|
|
7
|
+
* - stop_recording: Stop recording and process through the pipeline
|
|
8
|
+
* - get_status: Check if a recording is in progress
|
|
9
|
+
* - list_meetings: List recent meetings and voice memos
|
|
10
|
+
* - search_meetings: Search meeting transcripts
|
|
11
|
+
* - get_meeting: Get full transcript of a specific meeting
|
|
12
|
+
* - process_audio: Process an audio file through the pipeline
|
|
13
|
+
* - add_note: Add a timestamped note to a recording or meeting
|
|
14
|
+
* - consistency_report: Flag conflicting decisions and stale commitments
|
|
15
|
+
* - get_person_profile: Build a profile for a person across meetings
|
|
16
|
+
* - research_topic: Cross-meeting topic research
|
|
17
|
+
* - qmd_collection_status: Check QMD collection registration
|
|
18
|
+
* - register_qmd_collection: Register Minutes output as QMD collection
|
|
19
|
+
*
|
|
20
|
+
* All tools use execFile (not exec) to shell out to the `minutes` CLI binary.
|
|
21
|
+
* No shell interpolation — safe from injection.
|
|
22
|
+
*/
|
|
23
|
+
export {};
|