Skip to content

Commit b58eda3

Browse files
byteworthyclaude
andauthored
chore(brand): align category to Care Intelligence Platform + npm hygiene (#11)
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) <noreply@anthropic.com>
1 parent 69e7dc1 commit b58eda3

2 files changed

Lines changed: 37 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
Pre-submission claim risk. Live denial intelligence. Payer behavioral signals. Without leaving your Claude workflow.
1515

16+
[![npm](https://img.shields.io/npm/v/@upstream-intelligence/mcp?color=0454F1)](https://www.npmjs.com/package/@upstream-intelligence/mcp)
1617
[![License](https://img.shields.io/github/license/Upstream-Intelligence/upstream-mcp?color=0454F1)](LICENSE)
1718
[![Issues](https://img.shields.io/github/issues/Upstream-Intelligence/upstream-mcp?color=0454F1)](https://github.com/Upstream-Intelligence/upstream-mcp/issues)
1819
[![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
2425

2526
## What this is
2627

27-
A Model Context Protocol server that exposes Upstream's Payer intelligence Platform as a set of tools Claude can call directly.
28+
A Model Context Protocol server that exposes Upstream's Care Intelligence Platform as a set of tools Claude can call directly.
2829

2930
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.
3031

@@ -267,6 +268,6 @@ Built by [Upstream Intelligence](https://upstream.cx). Read the methodology at [
267268

268269
**[upstream.cx](https://upstream.cx)** · hello@upstream.cx
269270

270-
Payer intelligence Platform.
271+
Care Intelligence Platform.
271272

272273
</div>

package.json

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,51 @@
11
{
22
"name": "@upstream-intelligence/mcp",
33
"version": "0.2.0",
4-
"description": "MCP server for Upstream care intelligence",
4+
"description": "MCP server for Upstream's Care Intelligence Platform. Pre-submission claim risk, denial intelligence, and payer behavioral signals for Claude.",
55
"type": "module",
66
"main": "dist/index.js",
77
"bin": {
88
"upstream-mcp": "dist/index.js"
99
},
10+
"files": [
11+
"dist",
12+
"README.md",
13+
"LICENSE"
14+
],
1015
"scripts": {
1116
"build": "tsc",
1217
"dev": "tsc --watch",
1318
"test": "vitest run",
1419
"prepublishOnly": "npm run build"
1520
},
21+
"keywords": [
22+
"mcp",
23+
"model-context-protocol",
24+
"claude",
25+
"anthropic",
26+
"healthcare",
27+
"revenue-cycle-management",
28+
"denial-prediction",
29+
"payer-behavior",
30+
"prior-authorization",
31+
"ncci",
32+
"carc",
33+
"medical-billing",
34+
"upstream"
35+
],
36+
"author": "Upstream Intelligence <hello@upstream.cx> (https://upstream.cx)",
37+
"license": "MIT",
38+
"homepage": "https://github.com/Upstream-Intelligence/upstream-mcp#readme",
39+
"repository": {
40+
"type": "git",
41+
"url": "git+https://github.com/Upstream-Intelligence/upstream-mcp.git"
42+
},
43+
"bugs": {
44+
"url": "https://github.com/Upstream-Intelligence/upstream-mcp/issues"
45+
},
46+
"engines": {
47+
"node": ">=20"
48+
},
1649
"dependencies": {
1750
"@modelcontextprotocol/sdk": "^1.26.0"
1851
},

0 commit comments

Comments
 (0)