From 8b6395208ac8cd93cc91a8c29738fc33da5d0dc9 Mon Sep 17 00:00:00 2001 From: Jeff Rogers Date: Thu, 26 Feb 2026 18:08:00 -0600 Subject: [PATCH] feat: add MCP registry metadata for official directory listing Add mcpName to package.json and server.json for publishing to the Official MCP Registry via mcp-publisher. Co-Authored-By: Claude Opus 4.6 --- package.json | 1 + server.json | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 server.json diff --git a/package.json b/package.json index 043bbad..7ff4e6a 100644 --- a/package.json +++ b/package.json @@ -58,6 +58,7 @@ "engines": { "node": ">=18" }, + "mcpName": "io.github.atriumn/tokencost-dev", "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" diff --git a/server.json b/server.json new file mode 100644 index 0000000..9a5cbb6 --- /dev/null +++ b/server.json @@ -0,0 +1,20 @@ +{ + "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json", + "name": "io.github.atriumn/tokencost-dev", + "description": "LLM pricing oracle — model lookup, cost estimation, and comparison via LiteLLM", + "repository": { + "url": "https://github.com/atriumn/tokencost-dev", + "source": "github" + }, + "version": "0.1.2", + "packages": [ + { + "registryType": "npm", + "identifier": "tokencost-dev", + "version": "0.1.2", + "transport": { + "type": "stdio" + } + } + ] +}