Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
APPFLOWY_EMAILYesThe account to log in as.
APPFLOWY_BASE_URLYesYour instance URL. Use your self-hosted domain, not appflowy.com (the vendor cloud is a different backend).https://flow.example.com
APPFLOWY_PASSWORDYesThe account password (see secure handling below).
QUILL_FLOWY_WRITENoSet to '1' to register the mutating write tools. Off by default.0

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
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
check_authA

Verify the configured account can log in to AppFlowy and reach it. Read-only.

list_workspacesA

List all AppFlowy workspaces (name, id, role, member count). Read-only.

list_pagesA

Show the page/view tree of a workspace (titles, ids, and type: document/grid/board/…). Read-only.

get_pageA

Return a document page's body rendered as Markdown. Accepts a page title or view id. Read-only.

search_pagesA

Find pages by title, or by body text when body=true (decodes each document). Returns matches with ids. Read-only.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.2/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: auth verification, workspace listing, page tree listing, page content retrieval, and page search. The only minor overlap is get_page and search_pages by title, but their outputs differ enough to avoid real confusion.

Naming Consistency5/5

All tools follow the same snake_case verb_noun pattern: check_auth, list_workspaces, list_pages, get_page, search_pages. The naming is predictable and makes the toolset easy to navigate.

Tool Count5/5

Five tools is a well-scoped size for a read-only AppFlowy exploration server. Each tool covers a distinct need without redundancy or unnecessary bulk.

Completeness4/5

The read-only workflow is well covered: authenticate, list workspaces, browse the page tree, retrieve page bodies, and search content. The main gap is that list_pages mentions grid/board view types, but get_page only handles document page bodies, leaving non-document views without a retrieval path.

Maintenance

ActivityMaintained
ResponsivenessNo issues