Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"serverless-mcp-orchestrator": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
No description provided.
This server is thin — proceed with caution. Help improve this page →
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Hash-verified file editing MCP server with token efficiency hook. 11 tools for AI coding agents.
MCP Security Weekly
Get CVE alerts and security updates for Serverless Mcp Orchestrator and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Proof of concept for a cloud-native stack that connects AI models to South African macro data: a ASP.NET Core 10 REST API (Azure App Service, Azure SQL) plus a FastMCP Python layer on Azure Functions (streamable HTTP) for LLM tools.
This project explores connecting AI models to economic data through a layered architecture, with infrastructure defined in Bicep and deployed via the Azure Developer CLI (azd).
| Layer | Stack | Hosting | Role |
|---|---|---|---|
| Data | C# (.NET 10), EF Core | Azure App Service | REST API and persistent storage in Azure SQL |
| Intelligence | Python, MCP | Azure Functions | MCP tools over HTTP to the API |
Infrastructure details: infra/main.bicep (SQL Basic, Linux App Service, Consumption Functions, Storage, Log Analytics, Application Insights).
API (SQL Server / LocalDB): set ConnectionStrings:ZarFlowDb, then dotnet run --project src/EconomicDataService.
MCP: cd src/McpOrchestrator, set API_BASE_URL to the API base URL, then python server.py (listens on http://127.0.0.1:8765/mcp).
Run azd show for the current api and mcp-server HTTPS bases and an Azure Portal link to the resource group. Host names include a unique suffix per resource group.
Example bases (environment sarb-orchestrator-99):
| Service | Base URL |
|---|---|
| REST API | https://api-zarflow-nrhuttfhony7o.azurewebsites.net/ |
| MCP (streamable HTTP) | https://func-mcp-server-nrhuttfhony7o.azurewebsites.net/mcp |
/api/v1)| Method | Path |
|---|---|
| GET | /api/v1/indicators/summary |
| GET | /api/v1/exchange-rates/latest |
| POST | /api/v1/exchange-rates |
| GET | /api/v1/inflation/latest |
| POST | /api/v1/inflation/readings |
Legacy: GET /api/indicators (same summary as /api/v1/indicators/summary).
In Development only, OpenAPI is mapped at /openapi/v1.json (see Program.cs).
Deployments use azure.yaml and azd.
infra/main.bicepazd auth loginFrom the repository root:
azd init if you do not yet have a local azd environment (choose a name you will reuse).azd env set adminPassword "<your-strong-password>"azd up — provisions infrastructure, deploys the API and MCP Function app, and injects settings. EF Core migrations run on API startup against the deployed database.azd deploy --no-prompt
Show endpoints and portal link:
azd show
Workflow .github/workflows/azure-dev.yml runs azd deploy on push to main and workflow_dispatch. Set repository variable AZURE_ENV_NAME to your azd environment name, and secrets AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_SUBSCRIPTION_ID for azure/login (OIDC).
CI: .github/workflows/ci.yml (dotnet test, pytest).
.gitignore, user secrets locally, and azd / Key Vault references for deployment (see infra and environment config).403 Site Disabled during API dep