stxkxs/stedi
Healthcare & EDI Platform CLI with MCP server and API playground for the Stedi API
Platform-specific configuration:
{
"mcpServers": {
"stedi": {
"command": "npx",
"args": [
"-y",
"stedi"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
A production-ready CLI and MCP server for the Stedi Healthcare & EDI Platform.
Built with Cobra and Charm libraries for a polished terminal experience.
--json for scripting# Install directly
go install github.com/stxkxs/stedi@latest
# Or clone and build
git clone https://github.com/stxkxs/stedi.git && cd stedi
go build -o stedi .Requires Go 1.24+.
Set your Stedi API key using one of these methods (checked in order):
# 1. Environment variable
export STEDI_API_KEY=test_xxxxx
# 2. .env file in current directory
echo "STEDI_API_KEY=test_xxxxx" > .env
# 3. ~/.stedi/.env
mkdir -p ~/.stedi && echo "STEDI_API_KEY=test_xxxxx" > ~/.stedi/.env
# 4. Interactive setup
stedi config set-keyVerify configuration:
stedi config show# Search for payers by name
stedi payers search "Blue Cross"
# List all 5000+ payers
stedi payers list
# Get detailed payer information
stedi payers get HPQRS
# Output as JSON for scripting
stedi payers search "Aetna" --json | jq '.items[].payer.stediId'Loading reviews...