CONNECTORS
Quickstart
In this quickstart, you’ll build and run a simple connector that sends sample data to Mediloop using the Connector SDK.
This guide creates a minimal “Hello Mediloop” connector. You can adapt it to your system or device.
What you’ll build
A sample connector that:
- Connects to Mediloop via the Connector Gateway
- Authenticates using an API key
- Sends a sample observation (FHIR)
- Reports its health status
Your System
Connector Gateway
∞
Mediloop Platform
Steps to get started
1
Install the SDK
Install the Mediloop Connector SDK CLI on your machine.
2 min
2
Create a Connector
Scaffold a new connector project using the CLI.
3 min
3
Configure
Update the manifest and configuration with your credentials.
5 min
4
Run Locally
Start the connector locally and verify the connection.
5 min
5
Send Sample Data
Send a sample FHIR Observation to Mediloop.
3 min
6
Verify in Platform
View the data in the Mediloop Sandbox or FHIR Explorer.
2 min
1. Install the SDK
Run the following command to install the Mediloop Connector SDK CLI.
npm install -g @mediloop/connector-cli
# Verify installation
mediloop-connector --version✓ You’re all set! Continue with the next steps to build your first connector.
Prerequisites
- Node.js 18+
- An API key from your Mediloop tenant
- Access to a Mediloop Sandbox environment
Helpful Resources
Connector SDK Documentation ↗
Sample Connectors on GitHub ↗
Connector Lifecycle ↗
Troubleshooting Guide ↗
Want to explore a real-world example? Check out our sample connectors for LIS, PACS, DICOM, and more.