Skip to main content
Glama
kinmeic

Memos MCP Server

by kinmeic

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
MEMOS_API_KEYNoYour Memos API access token
MEMOS_BASE_URLNoYour Memos instance base URLhttps://demo.usememos.com

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

CapabilityDetails
tools
{}
resources
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
create_memoB

Create a new memo

list_memosA

List memos with pagination, sorting, and CEL filter support

get_memoB

Get a specific memo by ID

update_memoC

Update an existing memo

delete_memoC

Delete a memo

list_memo_attachmentsA

List all attachments for a specific memo

set_memo_attachmentsB

Set attachments for a memo (replaces all existing attachments)

create_attachmentB

Create a new attachment (can be linked to memos later)

get_attachmentB

Get a specific attachment by ID

list_attachmentsA

List all attachments with pagination, filtering, and sorting

update_attachmentC

Update an existing attachment

delete_attachmentA

Delete an attachment by ID

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription
All MemosAll memos from your Memos instance
Server ConfigurationCurrent server configuration

TDQS

A3.7/5.0

Scored across 12 tools

Disambiguation5/5

Each tool clearly targets a distinct resource and action: memo CRUD, attachment CRUD, and attachment-memo relationship operations are separated. list_memo_attachments and list_attachments are distinguished by scope, and set_memo_attachments is clearly different from create_attachment because one associates existing attachments while the other creates them.

Naming Consistency5/5

All tools follow a consistent snake_case verb_noun pattern: create_, list_, get_, update_, delete_ with the resource clearly named. The relationship tools set_memo_attachments and list_memo_attachments also align with this convention.

Tool Count5/5

12 tools is well-scoped for a server managing two related resources with full CRUD plus relationship operations. Each tool earns its place, and the count is neither bloated nor too thin.

Completeness5/5

Both memos and attachments have complete lifecycle coverage: create, read, list, update, delete. The additional memo-attachment relationship tools provide the missing linking capability, and set_memo_attachments allows replacement or clearing of attachments, covering all obvious workflows.

Maintenance

ActivityInactive
ResponsivenessNo issues