memobot-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_current_userA | Returns the profile of the logged-in Memobot account (name, email, phone, group). |
| list_recordingsA | Lists the account's voice recordings/meetings, newest first. |
| get_recording_transcriptA | Returns the raw recording detail for one audioId, including its transcript and (when present) a pre-signed, unauthenticated URL to the audio file itself. |
| get_recording_summaryB | Returns the raw AI-generated summary feed for one audioId. |
| get_user_infoB | Returns account usage/stats info (analytic-v2 userStats/user-info). |
| get_user_packageB | Returns the account's current subscription package(s), e.g. plan name and quota. |
| get_usage_statsA | Returns recording-minute usage stats for the current billing period. |
| get_user_configB | Returns account-level config/settings (feature flags, remote config). |
| get_api_keyA | Returns the account's ASR/TTS API key and its quota (amount in seconds, expiry). |
| get_notificationsB | Returns the account's recent in-app notifications. |
| check_for_updatesA | Checks whether a newer memobot-mcp version exists on GitHub's main
branch than the one this running server was built from. Since this
server runs via |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| get_current_user | Show the current Memobot account profile. |
| list_recordings | List the account's voice recordings/meetings, newest first. |
| get_recording_transcript | Show the raw transcript detail for one recording. |
| get_recording_summary | Show the raw AI summary for one recording. |
| get_user_info | Show account usage/stats info. |
| get_user_package | Show the account's current subscription package. |
| get_usage_stats | Show recording-minute usage stats for the current billing period. |
| get_user_config | Show account-level config/settings. |
| get_api_key | Show the account's ASR/TTS API key and quota. |
| get_notifications | Show recent in-app notifications. |
| check_for_updates | Check whether a newer memobot-mcp version is available. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 11 tools
Each tool targets a distinct data type: account info, API key, notifications, recordings (summary vs transcript), usage stats, config, package, and user info. No overlapping purposes, even between similar-sounding tools like get_current_user and get_user_info.
All tools follow a consistent verb_noun snake_case pattern (e.g., get_api_key, list_recordings). The only minor deviation is check_for_updates using 'check' instead of 'get', but it's still a clear verb and fits the pattern.
Eleven tools is well-scoped for an account management and recording information server. Each tool serves a specific purpose without redundancy, and the number feels neither excessive nor insufficient.
The tool set covers all common read operations for account data and recordings. However, it lacks mutation capabilities (e.g., delete recordings, update settings), which may be expected for a full lifecycle. This is a minor gap given the apparent read-only intent.