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
13 changes: 13 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,16 @@ jobs:
else
npm publish -w packages/cli --provenance --access public
fi
- name: Install mcp-publisher
run: curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_linux_amd64.tar.gz" | tar xz mcp-publisher
# OIDC authenticates this repository for the io.github.aryamthecodebreaker/* namespace.
- name: Publish to the MCP Registry
run: |
VERSION=$(node -p "require('./packages/cli/package.json').version")
if curl -s "https://registry.modelcontextprotocol.io/v0/servers?search=io.github.aryamthecodebreaker/fixmap" | grep -q "\"version\": *\"${VERSION}\""; then
echo "MCP Registry already has ${VERSION}; skipping."
else
jq --arg v "$VERSION" '.version = $v | .packages[0].version = $v' server.json > server.tmp && mv server.tmp server.json
./mcp-publisher login github-oidc
./mcp-publisher publish
fi
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/action/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fixmap/action",
"version": "0.4.0",
"version": "0.4.1",
"description": "GitHub Action wrapper for FixMap pull request reports.",
"private": true,
"license": "MIT",
Expand All @@ -10,6 +10,6 @@
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@aryam/fixmap-core": "0.4.0"
"@aryam/fixmap-core": "0.4.1"
}
}
5 changes: 3 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@aryam/fixmap",
"version": "0.4.0",
"version": "0.4.1",
"mcpName": "io.github.aryamthecodebreaker/fixmap",
"description": "CLI and MCP server for mapping issues and diffs to relevant files, tests, and review risks.",
"license": "MIT",
"repository": {
Expand All @@ -20,7 +21,7 @@
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@aryam/fixmap-core": "0.4.0",
"@aryam/fixmap-core": "0.4.1",
"@modelcontextprotocol/sdk": "^1.29.0"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aryam/fixmap-core",
"version": "0.4.0",
"version": "0.4.1",
"description": "Core repository scanner, ranker, and report renderer for FixMap.",
"license": "MIT",
"repository": {
Expand Down
27 changes: 27 additions & 0 deletions server.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.aryamthecodebreaker/fixmap",
"description": "Deterministic repo context for coding agents: ranked files with reasons, test routes, risk notes.",
"repository": {
"url": "https://github.com/aryamthecodebreaker/FixMap",
"source": "github"
},
"version": "0.4.1",
"packages": [
{
"registryType": "npm",
"identifier": "@aryam/fixmap",
"version": "0.4.1",
"transport": {
"type": "stdio"
},
"runtimeHint": "npx",
"packageArguments": [
{
"type": "positional",
"value": "mcp"
}
]
}
]
}