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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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.

Expand Down Expand Up @@ -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.

</div>
35 changes: 34 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <hello@upstream.cx> (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"
},
Expand Down