Skip to main content
Glama
SherryLi-vc

Strata Memory MCP Server

by SherryLi-vc

Strata Memory 2.0(分层记忆 · 工业级 AI 记忆基座)

PyPI License MCP

大模型只做决策,确定性代码接管一切。

Strata Memory 2.0 是面向 Multi-Agent 的 MCP 记忆中枢:以 SQLite 为唯一真相源(SoT),向量库可一键重建,Markdown 仅为只读投影。写入经过 Quality Kernel / CBT 中间件;召回采用渐进式漏斗,避免上下文爆炸。


核心设计

角色

可摧毁?

SQLite Truth Store

权威数据(记忆 / 审计 / 轨迹)

否(备份)

Chroma + BGE-M3

语义索引伴生层

strata_rebuild_index

Markdown projection

人类可读视图

strata_project 再生

  • L0–L3 分层 + 类型化 TTL(事实/偏好/规程/情节)

  • 三维隔离tenant_id + user_id + session_id

  • Scratch → Durable:会话暂存,确认后 promote_session

  • 防御性 MCP 契约:工具描述强制「作用 / 触发 / 禁忌」

Related MCP server: locus

快速开始

# 推荐:环境变量注入密钥(禁止写入对话与 config 明文)
export STRATA_API_KEY=sk-...
# 可选:自定义 Palace 路径
export STRATA_PALACE=~/.strata/palace

uvx strata-memory-mcp
# 或
git clone https://github.com/vincy/strata-memory.git
cd strata-memory && uv sync && uv run strata-memory-mcp

Claude Desktop

{
  "mcpServers": {
    "strata-memory": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/strata-memory", "strata-memory-mcp"],
      "env": {
        "STRATA_API_KEY": "sk-...",
        "STRATA_PALACE": "/path/to/palace"
      }
    }
  }
}

Hermes

# 推荐:完整 key 写入 Hermes env(禁止 sk-xxx...yyy 脱敏占位)
echo 'STRATA_API_KEY=sk-你的完整key' >> ~/.hermes/.env

cp examples/strata-wrapper.sh ~/.hermes/scripts/strata-wrapper.sh
chmod +x ~/.hermes/scripts/strata-wrapper.sh
# config.yaml → mcp_servers.strata-memory.command = wrapper 路径

更多客户端示例见 examples/ · examples/hermes-config.yaml

MCP 工具(10 个,意图聚合)

Tool

意图

strata_init

初始化 SoT + 配置

commit_memory

经 Quality Kernel 写入事实

promote_session

Scratch → Durable

recall_context

渐进召回(id + 摘要 + 分数)

expand_memory_detail

按 id 二次展开全文

strata_doctor

SoT ↔ 索引一致性巡检

strata_rebuild_index

从 SQLite 全量重建向量(confirm=true

strata_stats

L0–L3 Token 水位线

strata_project

导出只读 Markdown 投影

strata_digest

后台降级 / 归档(TTL + 分数)

strata_hygiene

过期/重复/secret 卫生扫描与可选修复

写入示例

{
  "user_id": "user_001",
  "memory_type": "user_preference",
  "fact_claim": "User prefers dark mode in VS Code with Monokai Pro theme.",
  "confidence_score": 0.92,
  "session_id": "sess_2026-08-04"
}

召回示例

{
  "user_id": "user_001",
  "query": "IDE theme preferences",
  "context_depth": "deep",
  "limit": 8
}

返回仅为卡片列表;需要细节时:

{ "user_id": "user_001", "memory_id": "<id from hits>" }

禁忌(Quality Kernel 硬拦截)

  • 密码 / API Key / Token

  • 纯情绪发泄、无事实

  • 模糊时间(刚才 / 昨天 / today)— 改用 ISO 日期

  • 将「也许 / 可能 / probably」写成 factual_truth

架构一览

LLM ─commit_memory─► Quality Kernel ─► CBT Middleware ─► SQLite (SoT)
                                                    └─► Chroma (rebuildable)

LLM ─recall_context─► Hybrid RRF (vector + FTS5) ─► {id, summary, score}
LLM ─expand_memory_detail(id)─► detail (scope-checked)

完整说明:docs/architecture.md · 工具契约:docs/tools.md

从 0.2.x 迁移

0.2.x

2.0

memorize

commit_memory

wake_up / search

recall_context + expand_memory_detail

get_health

strata_stats / strata_doctor

Markdown 直写

SQLite SoT;Markdown 仅投影

批量灌入旧 drawer(不删源文件):

# 预览
uv run python -m strata_memory.cli migrate --palace ~/.strata/palace

# 写入 SQLite
uv run python -m strata_memory.cli migrate --palace ~/.strata/palace --apply

# 写入 + 重建向量索引
export STRATA_API_KEY=sk-...
uv run strata-memory-migrate --palace ~/.strata/palace --apply --rebuild-vectors

完整说明:docs/migration-v02.md · CHANGELOG.md

安全

  • 默认本地存储;密钥走 STRATA_API_KEY,不落盘明文

  • 写操作无裸 CRUD;破坏性重建必须 confirm=true

  • user_id / tenant_id 的 expand 硬失败

SECURITY.md

开发

uv sync --extra dev
uv run pytest -v
uv run strata-memory-mcp

License

MIT — 见 LICENSE

Available Tools

8 tools
apply_memory_configA

[Agent-Driven] Apply chosen memory configuration: persist config, initialize Palace directories, ChromaDB, SQLite. Supports hot reload — no MCP restart needed.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeYesMemory mode.personal
providerYesEmbedding provider (e.g. siliconflow, local).
modelYesEmbedding model name.
api_keyNoAPI key for cloud providers.
base_urlNoAPI base URL.
dimensionNoEmbedding dimension.
cbt_modeNoCBT safety mode.
tenant_idNoTenant identifier (company mode).

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It discloses persistence and initialization of various components, but lacks details on destructiveness (e.g., overwriting existing config), error conditions, or required permissions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no waste. Key information is front-loaded: agent-driven, apply config, list of actions, hot reload. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (8 params, no output schema), the description covers the main effect adequately. It lacks details on return values and error handling, but the core purpose is clearly communicated.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

All 8 parameters have schema descriptions (100% coverage), so baseline is 3. The description adds no extra meaning beyond the schema, merely referencing the overall action of persisting config.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description starts with a clear verb ('Apply') and specific resource ('memory configuration'), listing concrete actions: persist config, initialize directories, ChromaDB, SQLite. It distinguishes itself from sibling tools like 'strata_init' or 'memorize' by focusing on configuration application.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when needing to apply a memory configuration and highlights hot reload support, but it does not explicitly state when to use versus alternatives or when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_healthA

Runtime status: initialized, mode, CBT, audit, vector/drawer count, config summary.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the behavioral burden. It specifies the tool returns a summary of runtime status with listed items, which provides moderate transparency. However, it does not mention any side effects, authentication needs, or reliability details.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence, front-loaded with 'Runtime status', and contains no unnecessary words. Every listed item is meaningful for understanding the output.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has no parameters and no output schema, the description provides a reasonable overview. However, some terms like 'CBT' and 'vector/drawer count' are not explained, which may leave an agent unsure of their meaning.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has no parameters (coverage 100%), so the description adds value by enumerating the fields included in the output (initialized, mode, CBT, audit, vector/drawer count, config summary). This goes beyond the empty schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns 'Runtime status' and lists specific components like initialized, mode, CBT, audit, vector/drawer count, config summary. This makes the purpose evident. However, it does not differentiate from the sibling tool 'get_system_profile', which could be a similar status check.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is used when runtime status is needed, but it gives no explicit when-to-use or when-not-to-use guidance. There is no mention of alternatives like 'get_system_profile'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_system_profileA

[Agent-Driven] Silent hardware profiling. Returns OS, RAM, CPU cores, GPU accelerator. No user input required — call this first during onboarding.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Describes itself as 'silent' and returns information only. With no annotations, it does not explicitly confirm read-only or non-destructive behavior, but the description is sufficient for a simple query tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Extremely concise; one sentence covers purpose, output, and usage guidance. Every phrase adds value without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite no output schema, description fully informs what the tool returns and its recommended use during onboarding. No further context needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters exist, so the description adds no param info beyond the schema. Baseline 4 applies as schema coverage is 100%.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states it performs hardware profiling and lists specific returned fields (OS, RAM, CPU cores, GPU accelerator). Distinguishes from siblings by noting it's for onboarding and requires no user input.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly specifies when to use: call this first during onboarding. No ambiguity about its role as an initial profiling step.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memorizeB

Record a conversation/fact into memory with psych-validated metadata (emotional_salience, context_tags, is_negative_schema). Writes Markdown drawer + vector index.

ParametersJSON Schema
NameRequiredDescriptionDefault
user_idYesUser/wing identifier.
contentYesRaw text content to memorize.
categoryNoMemory category (affects decay rate).event
importanceNoBase importance 0.0-1.0.
roomNoRoom within wing.general
context_tagsNoTags for state-dependent retrieval.

TDQS

B3.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description reveals that the tool writes to both a Markdown drawer and a vector index, indicating persistence and indexing. However, it does not disclose potential side effects, overwrite behavior, or authorization requirements.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that efficiently communicates the primary action and stored metadata. It is dense but not excessively long.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description does not explain return values or success indicators. Given the tool's complexity (6 parameters), it omits crucial details like error handling and post-conditions.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds minimal value beyond the schema, mentioning metadata fields that are not parameters and not explaining existing parameters in more depth.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool records a conversation or fact into memory, specifying metadata fields. However, it mentions 'emotional_salience' and 'is_negative_schema' which are not present in the input schema, causing minor confusion.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives like search or apply_memory_config. Lacks context for appropriate usage scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_embedding_recommendationsA

[Agent-Driven] Return ranked embedding recommendations based on hardware profile. Gets best-fit local/cloud models from MTEB-informed lookup table.

ParametersJSON Schema
NameRequiredDescriptionDefault
profileNoOptional hardware profile from get_system_profile. If omitted, runs detection automatically.

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. Describes internal logic (MTEB-informed table) but does not disclose side effects, auth requirements, or what happens with invalid input.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single, front-loaded sentence with a tag. All content is relevant and concise with no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description omits details about the return format (e.g., structure of ranked recommendations). Adequate for a simple lookup but could be more complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for the single parameter; the description repeats the same info. No additional meaning added beyond schema, meeting baseline for high coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states it returns ranked embedding recommendations based on hardware profile, using MTEB-informed lookup table. Distinct from sibling tools like get_system_profile (hardware probe) and search (general search).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implies usage when hardware-specific model recommendations are needed and notes auto-detection if profile omitted, but does not explicitly compare to alternatives or state when not to use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

strata_initA

First-time initialization with dual-mode setup. Choose 'personal' (CBT safety, 48h cooling) or 'company' (multi-tenancy, AuditLog, private embedding).

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyYesAPI key for embedding provider.
modeNoMemory mode. personal=CBT safety+emotional tracking. company=multi-tenancy+AuditLog.personal
providerNoEmbedding provider.siliconflow
modelNoEmbedding model.BAAI/bge-m3
base_urlNoAPI base URL.https://api.siliconflow.cn/v1
cbt_modeNoCBT safety mode (personal default=passive, company default=off).
tenant_idNoTenant identifier (company mode).

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It discloses that the tool performs initialization affecting system state, and details behaviors of each mode (CBT safety, 48h cooling, multi-tenancy, AuditLog). However, it does not specify whether the tool is idempotent or if it overrides existing configuration.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no redundancy. First sentence states purpose, second provides mode options and key features. Every word is informative and front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 7 parameters, no output schema, and no annotations, the description covers the main purpose and mode distinction. Missing details include return value, side effects of repeated calls, and explanation of '48h cooling.' Adequate but leaves gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage for all 7 parameters, each well-documented with types, enums, and defaults. The description adds minimal value beyond the schema, only reinforcing the mode choice. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states this is for first-time initialization with a dual-mode setup. The verb 'initialization' and resource 'dual-mode setup' are specific, and it distinguishes itself from sibling tools like 'apply_memory_config' or 'memorize' by focusing on initial system configuration.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly marks this as 'First-time initialization,' indicating it should be used at the start. It guides the choice between 'personal' and 'company' modes, but does not specify when not to use it (e.g., after initialization) or mention alternatives among siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

wake_upC

Session wake-up: L0 profile + L1 diary + L2 semantic search with CBT defusion for negative schemas. Returns flat Markdown.

ParametersJSON Schema
NameRequiredDescriptionDefault
user_idYesUser/wing identifier.
queryYesCurrent context/question to match against.
context_depthNoshallow=L0+L1 only, deep=L0+L1+L2.shallow
limitNoMax L2 results.

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It only states the return format ('flat Markdown') but does not disclose whether the tool modifies state, requires authentication, has side effects, or triggers any mutations. 'Wake-up' suggests activation but is vague.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very short (one sentence plus return note) and front-loaded with the action and key components. Every piece of information is essential, though jargon like 'L0 profile' could be clarified.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 4 parameters, no output schema, and complex multi-layered functionality (profile, diary, semantic search, CBT defusion), the description is too sparse. It fails to explain how the layers combine, what CBT defusion entails, or the format of the returned Markdown, leaving the agent under-informed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema provides 100% parameter descriptions, so the baseline is 3. The tool description does not add new meaning beyond what the schema already conveys (e.g., the schema already defines 'context_depth' with enum choices). It mentions 'L2 semantic search' but does not elaborate on how parameters interact.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description specifies the verb 'wake-up' and lists the resources involved (L0 profile, L1 diary, L2 semantic search) and the return format (flat Markdown). It distinguishes from sibling 'search' by including CBT defusion and multi-layer context.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus siblings like 'search', 'memorize', or 'search_embedding_recommendations'. The description does not indicate prerequisites, use cases, or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 8 tool updatesv0.2.0
    • First observedapply_memory_config
    • First observedget_health
    • First observedget_system_profile
    • First observedmemorize
    • First observedsearch
    • First observedsearch_embedding_recommendations
    • First observedstrata_init
    • First observedwake_up

TDQS

A3.7/5.0
Disambiguation5/5

Each tool targets a distinct purpose: initialization, health, profiling, memory writing, searching, recommendations, and session wake-up. No two tools have overlapping functionality that would confuse an agent.

Naming Consistency4/5

Most tools follow a verb_noun pattern (e.g., apply_memory_config, get_health, search_embedding_recommendations). However, 'strata_init' reverses the order (noun_verb) and 'memorize' is a lone verb without an object, causing slight inconsistency.

Tool Count5/5

With 8 tools, the surface is well-scoped and balanced for a memory management server. Each tool earns its place and covers core workflows without being excessively large or minimal.

Completeness3/5

The server covers initialization, health, profiling, memorizing, searching, and session wake-up, but lacks update and delete operations for memories. This gap may cause agents to fail when they need to modify or remove stored data.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/SherryLi-vc/strata-memory'

If you have feedback or need assistance with the MCP directory API, please join our Discord server