Skip to content

Commit 4bbc1b0

Browse files
GeneAIclaude
authored andcommitted
release: Add MCP Registry support (v2.1.4)
- Add mcp-name metadata to README.md for MCP Registry - Create server.json for MCP Registry publication - Bump version to 2.1.4 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 4473e31 commit 4bbc1b0

File tree

5 files changed

+49
-2
lines changed

5 files changed

+49
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to MemDocs will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.1.4] - 2025-12-05
9+
10+
### Added
11+
- **MCP Registry Support**: Added `server.json` and mcp-name metadata for MCP Registry publication
12+
- Ready for publication to https://registry.modelcontextprotocol.io
13+
14+
---
15+
816
## [2.1.3] - 2025-12-01
917

1018
### Changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
1010
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
1111

12+
<!-- mcp-name: io.github.silversurfer562/memdocs -->
13+
1214
[Features](#-key-features)
1315
[Quick Start](#-quick-start)
1416
[Complete Stack](#-the-complete-stack-transformational-productivity)

memdocs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Generate machine-friendly docs from code changes without bureaucratic overhead.
55
"""
66

7-
__version__ = "2.1.3"
7+
__version__ = "2.1.4"
88
__author__ = "Patrick Roebuck"
99
__license__ = "Apache-2.0"
1010

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "memdocs"
7-
version = "2.1.3"
7+
version = "2.1.4"
88
description = "Persistent memory management for AI projects - Git-native documentation intelligence"
99
authors = [{name = "Patrick Roebuck", email = "[email protected]"}]
1010
license = {text = "Apache-2.0"}

server.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
3+
"name": "io.github.silversurfer562/memdocs",
4+
"description": "Git-native project memory for AI assistants with enterprise-grade audit compliance",
5+
"repository": {
6+
"url": "https://github.com/Smart-AI-Memory/memdocs",
7+
"source": "github"
8+
},
9+
"version": "2.1.4",
10+
"packages": [
11+
{
12+
"registryType": "pypi",
13+
"identifier": "memdocs",
14+
"version": "2.1.4",
15+
"runtimeHint": "uvx",
16+
"transport": {
17+
"type": "stdio"
18+
},
19+
"environmentVariables": [
20+
{
21+
"name": "PROJECT_ROOT",
22+
"description": "Root directory of the project to track",
23+
"isRequired": false,
24+
"format": "string",
25+
"isSecret": false
26+
},
27+
{
28+
"name": "ANTHROPIC_API_KEY",
29+
"description": "API key for Claude AI operations (summarization, analysis)",
30+
"isRequired": true,
31+
"format": "string",
32+
"isSecret": true
33+
}
34+
]
35+
}
36+
]
37+
}

0 commit comments

Comments
 (0)