Niagara Server
FreeNot checkedDynamically discovers and exposes Azure API Management APIs as MCP tools, enabling Copilot Studio to call them via natural language without hardcoding.
About
Dynamically discovers and exposes Azure API Management APIs as MCP tools, enabling Copilot Studio to call them via natural language without hardcoding.
README
An MCP (Model Context Protocol) server deployed on Azure that dynamically reads all APIs from Azure API Management and exposes them as AI tools to Copilot Studio. No hardcoding. No static files. APIM is the single source of truth.
Branch: Active development on
development.mainis protected.
How It Works
Copilot Studio (user types plain English)
|
| MCP protocol — Streamable HTTP
v
registry-mcp-server (Azure App Service — Docker container)
├── http_app_apim.py → exposes /mcp endpoint, accepts Copilot Studio connections
├── server_apim.py → MCP protocol: handles tools/list and tools/call
├── apim_dynamic.py → reads all APIs live from APIM Management API, filters, routes
├── registry.py → fallback only (returns empty if tools_registry.json missing)
├── dispatcher.py → fallback HTTP dispatcher for registry-based tools
└── apim_poc/policy.xml → APIM native gateway policy (POC reference, not active)
|
| Real HTTP calls with subscription key
v
Azure API Management (apim-dev-intg)
├── Function Apps (fn-dev-bark, fn-dev-dimitri-getshipmentfromwms, fn-dev-purchase-orders ...)
├── Logic Apps (dimitri-otmtodimitriupdate, ebs-to-dimitri, service-cloud-integration ...)
└── REST APIs (livetracking-getShipments, uomconversiontoerp, otmgenericapi ...)
Code Files
| File | What it does |
|---|---|
app/mcp_server/apim_dynamic.py |
Core. Authenticates via Managed Identity, calls management.azure.com, reads all 56 APIs, filters out EDI/B2B prefixes, converts each operation to MCP tool format, routes tool calls to correct APIM endpoint |
app/mcp_server/server_apim.py |
MCP protocol layer. Handles tools/list (calls apim_dynamic) and tools/call (routes to apim_dynamic or fallback) |
app/mcp_server/http_app_apim.py |
Web server. Exposes /mcp Streamable HTTP endpoint for Copilot Studio and /sse legacy endpoint |
app/mcp_server/registry.py |
Fallback only. Loads tools from tools_registry.json if it exists. File is deleted — returns empty dict |
app/mcp_server/dispatcher.py |
Fallback HTTP dispatcher. Used only if APIM discovery fails |
apim_poc/policy.xml |
APIM native gateway approach (Plan A / POC). Documents rate limiting, JWT auth, and CORS policies |
API Discovery Logic (apim_dynamic.py)
- Authenticates using App Service Managed Identity — no passwords, no hardcoded credentials
- Calls
management.azure.com→ reads all 56 APIs fromapim-dev-intg - Checks for
mcp-enabledtag — if any API is tagged, shows only tagged ones. If none tagged, shows all - Filters out EDI/B2B system callbacks by prefix:
o2c_,p2p_,b2b_,echo_api,fourkites_,fap_dev_,3pl_ofc_,fn_dev_edi_ - Converts remaining 53 business tools to MCP format with name, description, and input schema from APIM metadata
- Returns to Copilot Studio — happens live on every session, no caching
Any new Logic App or Function App published to APIM automatically appears in Copilot Studio on the next session. Zero code change, zero redeploy.
Security Controls
| Control | Status |
|---|---|
| Managed Identity — no credentials in code | Active |
| All secrets in App Service env vars — never in code or git | Active |
| APIM audit logging via Azure Monitor | Active automatically |
| EDI/B2B filter — AI cannot see system integration endpoints | Active |
mcp-enabled tag — whitelist specific APIs for AI access |
Ready — APIM admin adds tags |
| Rate limiting — 100 calls/min per subscription | Ready — one line in policy.xml |
| JWT Azure AD authentication on /mcp endpoint | Ready — one line in policy.xml |
Tech Stack
| Technology | Version | Purpose |
|---|---|---|
| Python | 3.11 | Server language |
| MCP SDK | 1.28.1 | MCP protocol |
| Starlette | 0.41.3 | Web framework |
| Uvicorn | 0.32.1 | ASGI server |
| HTTPX | 0.28.1 | Async HTTP calls to APIM |
| Azure Identity SDK | ≥1.15.0 | Managed Identity authentication |
| Docker | — | Containerization |
| Azure App Service | — | Hosting |
| Azure Container Registry | acrregistrymcp | Docker image storage |
| APIM Management API | 2022-08-01 | Dynamic API discovery |
Azure Resources
Resource group: rg-dev-IntegrationTeamAI — Subscription: Niagara Development
| Resource | Type | Purpose |
|---|---|---|
registry-mcp-server |
App Service | MCP server — live at azurewebsites.net |
acrregistrymcp |
Container Registry | Docker image storage |
apim-dev-intg |
API Management | Source of all 56 APIs |
Environment Variables (App Service)
| Variable | Purpose |
|---|---|
AZURE_SUBSCRIPTION_ID |
Azure subscription hosting APIM |
APIM_RESOURCE_GROUP |
Resource group of APIM instance |
APIM_SERVICE_NAME |
APIM name — currently apim-dev-intg |
APIM_BASE_URL |
APIM gateway URL |
APIM_SUBSCRIPTION_KEY |
Subscription key for All APIs product — sent on every tool call |
APIM_MCP_TAG |
Tag filter — default mcp-enabled |
Live URLs
| URL | Purpose |
|---|---|
https://registry-mcp-server.azurewebsites.net/mcp |
MCP endpoint — Copilot Studio connects here |
https://registry-mcp-server.azurewebsites.net/sse |
Legacy SSE endpoint |
https://apim-dev-intg.azure-api.net |
APIM gateway |
Installing Niagara Server
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/hassancr7240-ai/MCPFAQ
Is Niagara Server MCP free?
Yes, Niagara Server MCP is free — one-click install via Unyly at no cost.
Does Niagara Server need an API key?
No, Niagara Server runs without API keys or environment variables.
Is Niagara Server hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Niagara Server in Claude Desktop, Claude Code or Cursor?
Open Niagara Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Niagara Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
