From 924b728a0daa744a831f23f3ce1ceafb1257c3a1 Mon Sep 17 00:00:00 2001 From: byteworthy Date: Sun, 17 May 2026 01:04:05 -0500 Subject: [PATCH] chore(brand): align category to Care Intelligence Platform + npm hygiene MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Coherence sweep across Upstream-family repos surfaced: 1. README intro paragraph and footer both said "Payer intelligence Platform" (lowercase 'i', wrong category). Canon per _config/BRAND.md and _config/CONSISTENCY.md is "Care Intelligence Platform" — established as the category framing on 2026-05-03 and used by upstream-skills, upstream-community, and the org profile. Fixed both occurrences. 2. package.json description was generic ("MCP server for Upstream care intelligence"). Replaced with category-aligned, npm-shopfront ready copy. No em dash (forbidden in outbound copy per VOICE.md). 3. Added standard npm registry hygiene fields the published v0.2.0 package was missing: keywords, author, license (was implicit via LICENSE file), homepage, repository, bugs, engines (node >=20 per CI), files allowlist. None of these change runtime behavior; they surface on npmjs.com/package/@upstream-intelligence/mcp. 4. Added npm version badge to README so release state is visible at a glance. No version bump (coherence sweep, not a release). Build clean, 9/9 tests pass. Co-Authored-By: Claude Opus 4.7 (1M context) --- README.md | 5 +++-- package.json | 35 ++++++++++++++++++++++++++++++++++- 2 files changed, 37 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 51045cf..35f9482 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ Pre-submission claim risk. Live denial intelligence. Payer behavioral signals. Without leaving your Claude workflow. +[![npm](https://img.shields.io/npm/v/@upstream-intelligence/mcp?color=0454F1)](https://www.npmjs.com/package/@upstream-intelligence/mcp) [![License](https://img.shields.io/github/license/Upstream-Intelligence/upstream-mcp?color=0454F1)](LICENSE) [![Issues](https://img.shields.io/github/issues/Upstream-Intelligence/upstream-mcp?color=0454F1)](https://github.com/Upstream-Intelligence/upstream-mcp/issues) [![upstream.cx](https://img.shields.io/badge/upstream-cx-0454F1)](https://upstream.cx) @@ -24,7 +25,7 @@ Pre-submission claim risk. Live denial intelligence. Payer behavioral signals. W ## What this is -A Model Context Protocol server that exposes Upstream's Payer intelligence Platform as a set of tools Claude can call directly. +A Model Context Protocol server that exposes Upstream's Care Intelligence Platform as a set of tools Claude can call directly. Your billing team is in Claude already. They are asking Claude to draft appeals, decode denial codes, and explain payer behavior. With this MCP installed, Claude does not guess. Claude calls Upstream's network of operators and gets the real answer with specific dollar impact and the recommended fix. @@ -267,6 +268,6 @@ Built by [Upstream Intelligence](https://upstream.cx). Read the methodology at [ **[upstream.cx](https://upstream.cx)** · hello@upstream.cx -Payer intelligence Platform. +Care Intelligence Platform. diff --git a/package.json b/package.json index 6c7da0f..89ece94 100644 --- a/package.json +++ b/package.json @@ -1,18 +1,51 @@ { "name": "@upstream-intelligence/mcp", "version": "0.2.0", - "description": "MCP server for Upstream care intelligence", + "description": "MCP server for Upstream's Care Intelligence Platform. Pre-submission claim risk, denial intelligence, and payer behavioral signals for Claude.", "type": "module", "main": "dist/index.js", "bin": { "upstream-mcp": "dist/index.js" }, + "files": [ + "dist", + "README.md", + "LICENSE" + ], "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "vitest run", "prepublishOnly": "npm run build" }, + "keywords": [ + "mcp", + "model-context-protocol", + "claude", + "anthropic", + "healthcare", + "revenue-cycle-management", + "denial-prediction", + "payer-behavior", + "prior-authorization", + "ncci", + "carc", + "medical-billing", + "upstream" + ], + "author": "Upstream Intelligence (https://upstream.cx)", + "license": "MIT", + "homepage": "https://github.com/Upstream-Intelligence/upstream-mcp#readme", + "repository": { + "type": "git", + "url": "git+https://github.com/Upstream-Intelligence/upstream-mcp.git" + }, + "bugs": { + "url": "https://github.com/Upstream-Intelligence/upstream-mcp/issues" + }, + "engines": { + "node": ">=20" + }, "dependencies": { "@modelcontextprotocol/sdk": "^1.26.0" },