Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion scripts/check_doc_claims.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,25 @@
# published to the badge. Three of its test counts had drifted two
# corrections behind the repository before it was scanned (2026-07-27).
".bestpractices.json",
# The MCP registry serves server.json's description verbatim, so a stale
# number here is published to every registry client. Only its `version`
# was asserted (check_versions) until its description was found still
# advertising "72 references" — two corrections behind the 97-reference
# bibliography — and shipped that way to the registry (2026-08-02).
"server.json",
)

TOOL_CLAIM = re.compile(r"(\d+)\s+(?:memory|standalone|MCP)\s+tools\b")
TOOL_TOTAL_CLAIM = re.compile(r"\((\d+)\s+(?:total\s+)?with\b[^)]*\)")
REFERENCE_CLAIM = re.compile(r"(\d+)[-\s]reference\b")
# `cited` is optional because the claim is written both ways ("36
# neuroscience-grounded mechanisms" in CONTRIBUTING, "36 cited brain
# mechanisms" in the README lede and "36 cited neuroscience mechanisms" in
# server.json). Without it the qualified phrasings parsed as no claim at
# all, so the README lede and the registry description were never asserted
# against the canonical count (found 2026-08-02).
MECHANISM_CLAIM = re.compile(
r"(\d+)\s+(?:neuroscience[- ]grounded|neuroscience|biological|brain)?"
r"(\d+)\s+(?:cited\s+)?(?:neuroscience[- ]grounded|neuroscience|biological|brain)?"
r"\s*mechanisms\b"
)
# Both the "N tests" and the "N-test suite" phrasings state the count. No
Expand Down
3 changes: 2 additions & 1 deletion server.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.cdeust/hypermnesia-mcp",
"description": "Scientifically-grounded persistent memory for Claude — local-first, hybrid retrieval, 72 references.",
"description": "Persistent memory for Claude — 36 cited neuroscience mechanisms, local-first, hybrid retrieval.",
"repository": {
"url": "https://github.com/cdeust/Cortex",
"source": "github"
},
"version": "4.17.1",
"websiteUrl": "https://ai-architect.tools",
"packages": [
{
"registryType": "pypi",
Expand Down