Redix AnyToAny MCP Server
Exposes the Redix AnyToAny healthcare data conversion engine to AI agents, enabling conversion between X12, FHIR, HL7 v2, CDA, and other formats via the Model Context Protocol.
README
Redix AnyToAny MCP Server
MCP server that exposes the Redix AnyToAny healthcare data conversion engine to AI agents via the Model Context Protocol.
Tools (12)
| Tool | Description | Gates |
|---|---|---|
validate_x12 |
Validate HIPAA X12 against 5010 rules | IS the gate |
convert_x12_to_fhir |
X12 → FHIR R4 Bundle | Gate 1 (input) |
convert_x12_to_rmap |
X12 → RMap v5 | Gate 1 (input) |
convert_rmap_to_x12 |
RMap v5 → X12 | Gate 5 (output) |
convert_x12_to_database |
X12 → relational DB tables | Gate 1 (input) |
generate_x12_from_database |
DB → X12 | Gate 5 (output) |
convert_hl7_to_fhir |
HL7 v2 → FHIR R4 | — |
convert_cda_to_fhir |
CDA / C-CDA → FHIR R4 | — |
convert_fhir_to_x12 |
FHIR → X12 278 | Gate 5 (output) |
convert_fhir_to_rmap |
FHIR → RMap v5 | — |
generate_claim_pdf |
X12 837 → PDF (CMS-1500/UB-04/ADA) | Gate 1 (input) |
list_supported_formats |
Capability discovery | — |
Quick Start — Remote (Hosted)
Connect to the hosted demo server — no installation required.
Streamable HTTP (recommended)
{
"mcpServers": {
"redix-anytoany": {
"url": "https://demo.redix.com/mcp",
"env": {
"REDIX_API_KEY": "demo-key-12345"
}
}
}
}
SSE
{
"mcpServers": {
"redix-anytoany": {
"url": "https://demo.redix.com/sse",
"env": {
"REDIX_API_KEY": "demo-key-12345"
}
}
}
}
Setup — Local (Self-Hosted)
pip install -r requirements.txt
Environment Variables
| Variable | Default | Description |
|---|---|---|
REDIX_API_BASE |
http://localhost:8080 |
Redix API base URL |
REDIX_API_KEY |
demo-key-12345 |
API authentication key |
REQUEST_TIMEOUT |
120 |
HTTP timeout in seconds |
LOG_LEVEL |
INFO |
Python logging level |
Running Locally
STDIO mode (Claude Desktop / Claude Code)
python3.11 server.py
Streamable HTTP mode (multi-client)
fastmcp run server.py --transport streamable-http --port 8000
SSE mode (multi-client)
fastmcp run server.py --transport sse --port 8000
MCP Inspector
fastmcp dev server.py
Claude Code Integration
Copy .mcp.json to your project root, or add to Claude Code settings:
{
"mcpServers": {
"redix-anytoany": {
"command": "python3.11",
"args": ["server.py"],
"cwd": "/opt/MCP/redix-mcp-server",
"env": {
"REDIX_API_BASE": "http://localhost:8080",
"REDIX_API_KEY": "demo-key-12345"
}
}
}
}
Claude Desktop Integration
Add to ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"redix-anytoany": {
"command": "python3.11",
"args": ["/opt/MCP/redix-mcp-server/server.py"],
"env": {
"REDIX_API_BASE": "http://localhost:8080",
"REDIX_API_KEY": "demo-key-12345"
}
}
}
}
Testing
python3.11 tests/test_tools.py
Requires the Redix API to be running at the configured REDIX_API_BASE.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.