client-report-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@client-report-mcpfetch the latest report for Arbor Energy"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
client-report-mcp
A remote MCP server that lets Claude fetch client report data (starting with Arbor Energy, designed to extend to other clients) from arborreport.polarisconsulting.net, authenticated via Microsoft Entra ID.
Status: scaffold, not yet production-ready
This was built without access to two things — fill these in before handing off to end users:
The real report API contract.
src/report-client.tscurrently guesses a REST shape (GET {REPORT_API_BASE_URL}/reports/{clientName}). Confirm the actual endpoint, auth requirements, and response shape with whoever owns arborreport.polarisconsulting.net, then update that file.Real Entra ID app registration values (tenant ID, client ID, client secret) — see
.env.example. Also confirm whether the report API expects the Entra access token issued for basic sign-in scopes, or a specific API scope (api://<report-app-id>/...) — this is a common gap and will show up as 401/403 errors from the report API if wrong.
Everything else — the OAuth 2.1/DCR proxy in front of Entra ID, and the MCP
tool wiring — is implemented and has been type-checked and smoke-tested
(server boots, serves /healthz and OAuth metadata correctly).
Related MCP server: Power BI MCP for Claude
How it fits together
Claude <-- OAuth 2.1 / Dynamic Client Registration --> this server <-- OAuth2 --> Entra ID
|
v
arborreport.polarisconsulting.netSee the comment block at the top of src/oauth.ts for the full step-by-step
of the authorization flow.
Local setup
npm install
cp .env.example .env # fill in real ENTRA_* and REPORT_API_BASE_URL values
npm run devFor local testing with Claude (which needs a public HTTPS URL), run this
behind a tunnel (e.g. ngrok http 3000) and set PUBLIC_URL to the tunnel's
HTTPS URL before starting the server.
Deploying
This is a plain Express app — deploy it anywhere that can run Node and is reachable over the public internet (or reachable via an allowlisted outbound connection if going through a corporate firewall). Cloudflare Workers/another managed platform can also handle hosting + autoscaling if preferred; you'd port the Express routes to that platform's request model.
Set the real PUBLIC_URL to wherever it ends up living, since the OAuth
callback URL ({PUBLIC_URL}/oauth/callback) has to match what's registered
in Entra ID for this app.
Important: the token stores in src/oauth.ts (pendingAuthorizations,
pendingCodes, issuedTokens) are in-memory Maps. They will not survive a
restart and won't work if you run more than one instance behind a load
balancer. Replace with Redis or a database before this goes beyond a
single-instance pilot.
Handing this off to a Polaris Owner
Once deployed and confirmed working end-to-end:
Give the Owner (e.g. Andrew Shea or Nathan Loy) the deployed MCP server URL (
{PUBLIC_URL}/mcp).They add it under Organization settings > Connectors > Add > Custom in Claude — no OAuth Client ID/Secret needs to be entered there, since this server implements its own Dynamic Client Registration and handles the Entra exchange internally.
Each tech then connects individually from Customize > Connectors and signs in with their own Microsoft account — access mirrors whatever that person can already see in the report portal.
Testing the OAuth flow before handoff
The official MCP inspector can walk through the full authorization flow against a locally-tunneled instance of this server before you hand it to anyone — see the "Test your connector" step in Anthropic's custom connector docs.
This server cannot be deployed
Maintenance
Related MCP Connectors
The Remote MCP server acts as a standardized bridge between LLM applications (like Claude, ChatGPT, and Cursor) and external services, enabling AI agents to access external tools and resources. Its primary capability is providing a centralized search tool to discover other MCP servers and their respective tools. Unlike local implementations, it runs remotely with OAuth authentication and permission controls for security.
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
Unified MCP Server is a remote MCP connector for AI agents and vertical AI products that provides access to 22,000+ authorized SaaS tools across 400+ integrations and 24 categories directly inside LLMs (Claude, GPT, Gemini, Cohere). Tools operate only on explicitly authorized customer connections, enabling agents to safely read and write against live third-party systems.
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceMCP server that enables AI-powered assessment of Active Directory on-premises environments by exposing AD data as queryable tools for LLMs like Claude.MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for Microsoft Power BI and Fabric, enabling Claude to discover workspaces, semantic models, generate and execute DAX queries, and retrieve report metadata via device-code authentication.20 npm1MIT
- FlicenseNot gradedqualityCmaintenanceEnterprise-safe MCP server that enables Claude Enterprise to access approved on-prem SQL Server data through read-only, governed, and auditable tools.-
- FlicenseAqualityCmaintenanceAn MCP server that connects Claude and other MCP clients to Microsoft Power BI via its REST API using a Service Principal, enabling natural language queries to list workspaces, run DAX queries, refresh datasets, and explore reports.7-