File tree Expand file tree Collapse file tree 5 files changed +49
-2
lines changed
Expand file tree Collapse file tree 5 files changed +49
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ All notable changes to MemDocs will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and 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
Original file line number Diff line number Diff line change 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 ) •
Original file line number Diff line number Diff line change 44Generate 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
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " memdocs"
7- version = " 2.1.3 "
7+ version = " 2.1.4 "
88description = " Persistent memory management for AI projects - Git-native documentation intelligence"
99authors = [{
name =
" Patrick Roebuck" ,
email =
" [email protected] " }]
1010license = {text = " Apache-2.0" }
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments