Skip to content

Commit 56b5451

Browse files
committed
v1.3.4: add MCP registry publishing (server.json + CI workflow)
1 parent 4cddaae commit 56b5451

3 files changed

Lines changed: 29 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,10 @@ jobs:
4747
- run: npm publish --provenance --access public
4848
env:
4949
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
50+
- name: Install mcp-publisher
51+
run: |
52+
curl -sL "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_linux_amd64.tar.gz" | tar xz mcp-publisher
53+
- name: Publish to MCP Registry
54+
run: |
55+
./mcp-publisher login github-oidc
56+
./mcp-publisher publish

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agent-knowledge",
3-
"version": "1.3.3",
3+
"version": "1.3.4",
44
"description": "Cross-session memory and recall for AI agents — git-synced knowledge base, knowledge graph, confidence scoring, hybrid semantic+TF-IDF search, auto-distillation with secrets scrubbing",
55
"type": "module",
66
"main": "dist/index.js",
@@ -46,6 +46,7 @@
4646
"coding-assistants"
4747
],
4848
"author": "keshrath",
49+
"mcpName": "io.github.keshrath/agent-knowledge",
4950
"license": "MIT",
5051
"repository": {
5152
"type": "git",

server.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3+
"name": "io.github.keshrath/agent-knowledge",
4+
"description": "Cross-session memory and recall for AI agents — git-synced knowledge base, knowledge graph, confidence scoring, hybrid semantic+TF-IDF search",
5+
"repository": {
6+
"url": "https://github.com/keshrath/agent-knowledge",
7+
"source": "github"
8+
},
9+
"version": "1.3.4",
10+
"packages": [
11+
{
12+
"registryType": "npm",
13+
"identifier": "agent-knowledge",
14+
"version": "1.3.4",
15+
"transport": {
16+
"type": "stdio"
17+
}
18+
}
19+
]
20+
}

0 commit comments

Comments
 (0)