conduit-mcp
Provides tools for interacting with QuickBooks Online, enabling management of invoices, expenses, customers, and other accounting data.
Click on "Install 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., "@conduit-mcpfind tools to create an invoice in QuickBooks"
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.
conduit-mcp
remote MCP server that fronts multiple SaaS integrations behind three meta-tools. instead of exposing a hundred-plus tools to every client, the server exposes list_integrations, find_tools, and invoke_tool: clients search the catalog by task description, get back matching tool schemas, and invoke by exact name. an admin portal manages plugins, api keys, roles, and usage.
bundled integrations: HaloPSA, Hudu, CIPP, NinjaRMM, QuickBooks Online.
layout
path | what |
| express api: |
| next.js static-export admin portal (MSAL sign-in) |
| types + helpers plugins build against |
| bundled integrations, source + |
| local dev setup ( |
| bicep templates + entra app registration script |
Related MCP server: MCPHub
how to run
needs node >= 22 and pnpm via corepack (version pinned in package.json packageManager).
corepack enable
scripts/setup.ps1 # or setup.sh: frozen-lockfile install + full workspace build
pnpm devpnpm dev runs everything in one terminal via concurrently, output prefixed per process: azurite (in-memory table storage), sdk + server tsc watchers, the api server, and next dev. ctrl+C stops the lot. pnpm serve skips the watchers and serves the prebuilt api + static web export only.
portal: http://localhost:3000 (next dev, proxies api calls to :4000)
api + mcp: http://localhost:4000 (
/healthz,/mcp)
with no config the server boots unconfigured and the portal shows the bootstrap setup wizard, which walks through entra app setup. to skip it, copy .dev.env.example to .dev.env and pre-seed ENTRA_TENANT_ID / ENTRA_CLIENT_ID / BOOTSTRAP_ADMIN_OID; pnpm dev loads it at boot.
repo-wide checks: pnpm lint, pnpm typecheck, pnpm test, pnpm build.
how it works
mcp surface. /mcp speaks streamable http. requests authenticate with an entra bearer token or a conduit api key. for clients that only speak oauth, the server proxies authorization to entra (authorization server metadata + dynamic client registration). sessions and event streams persist in table storage, so streams survive reconnects.
catalog + meta-tools. every plugin tool is indexed into a searchable catalog (minisearch). find_tools returns matching tool schemas, invoke_tool executes by exact name and records usage. permissions filter both search hits and invokes, so a principal only sees tools its grants allow.
plugins. a plugin is a source directory with a conduit.plugin.json manifest (id, entry, secret names, portal settings ui, public routes). the loader bundles the entry with esbuild at load time against the host's sdk, registers its tools into the catalog, and mounts any portal routes under /api/plugins/:pluginId. the packages in packages/plugins seed automatically; more can be installed from git through the portal. docs/writing-plugins.md covers authoring a plugin against the sdk and installing a custom one.
auth model. principals are entra users or api keys. roles carry per-integration grants (read-only or full, down to individual tools) and are resolved per request; portal access is a separate surface, portal roles never widen mcp tool access. BOOTSTRAP_ADMIN_OID seeds the first admin.
storage + secrets. azure table storage holds all state (config, plugin registry, roles, api keys, usage, mcp sessions); azurite stands in locally. secrets go to key vault when AZURE_KEYVAULT_URL is set, plain env vars otherwise.
portal. next.js static export, served by the api server itself in production (apps/web/out); local watch mode runs next dev instead.
deploy
Dockerfile builds a self-contained server image with the web export baked in. ci (.github/workflows/deploy.yml) tests, then builds and pushes ghcr.io/<owner>/<repo>:<sha> on every main push. first publish only: the package defaults to private, flip it public in repo settings > packages so app service can pull without registry credentials.
infra/main.bicep (subscription scope) provisions the resource group, app service, storage, and key vault. the entra app registration happens one of two ways:
setup wizard, one bicep run. deploy with the entra params blank and open the portal: the bootstrap wizard signs you in via device code, creates the app registration through graph, and writes tenant/client ids to config storage. /api/setup/* is unauthenticated until setup completes and the first signer becomes admin (trust-on-first-use); the setup gate 404s those endpoints afterwards.
scripted, two bicep runs. no open setup window, the server boots already configured. the entra script needs run 1's outputs (webapp url for redirect uris, key vault name for the client secret), and bicep can't create app registrations itself, hence the second run to land the ids as app settings.
# 1. infra, entra params blank. operatorObjectId grants the KV write step 2 needs
az deployment sub create -l eastus2 -f infra/main.bicep \
-p image=ghcr.io/<owner>/conduit-mcp:<sha> bootstrapAdminOid=<your-oid> operatorObjectId=<your-oid>
# 2. app registration + client secret into key vault
# PS7, az login as a user with Application.ReadWrite.OwnedBy, -DryRun to preview
./infra/scripts/setup-entra-app.ps1 -DisplayName "conduit-mcp" \
-ProdUrl <webAppUrl output> -KeyVaultName <keyVaultName output>
# 3. same deployment plus the ids the script printed
az deployment sub create -l eastus2 -f infra/main.bicep \
-p image=ghcr.io/<owner>/conduit-mcp:<sha> bootstrapAdminOid=<your-oid> operatorObjectId=<your-oid> \
entraTenantId=<tenant-id> entraClientId=<client-id>the app settings change restarts the container; boot seeds the ids into the config store (fills blank fields only, config put stays authoritative).
continuous deploy, opt-in. create an oidc federation for the workflow, set secrets AZURE_CLIENT_ID / AZURE_TENANT_ID / AZURE_SUBSCRIPTION_ID and vars AZURE_WEBAPP_NAME / AZURE_RESOURCE_GROUP, then set repo var AZURE_DEPLOY=true. main pushes then repoint the webapp at the freshly pushed image.
in-portal updates. settings shows whether the registry image differs from the running build (ci bakes the git sha into the image) and can restart the app to pull it; the restart uses a restart-only custom role granted to the managed identity by the bicep, so deployments created before that role existed need a bicep rerun to get the button working.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceA meta-MCP server that manages and aggregates other MCP servers, enabling LLMs to dynamically extend their own capabilities by searching for, adding, and configuring tool servers.16141AGPL 3.0
- FlicenseNot gradedqualityDmaintenanceA centralized management platform that aggregates multiple Model Context Protocol (MCP) servers into a single unified endpoint for AI agents. It provides a web interface for hot-swappable tool management, proxying of existing servers, and AI-powered generation of custom MCP plugins.1
- AlicenseNot gradedqualityDmaintenanceA production-grade MCP server designed for multi-tenant, authenticated, and observable AI agent systems, enabling secure tool execution across heterogeneous data sources.57MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to discover and execute tools via a secure MCP server with JWT authentication, RBAC, rate limiting, and audit logging.1MIT
Related MCP Connectors
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
A paid remote MCP for OpenAI Codex agent coordination MCP, built to return verdicts, receipts, usage
A paid remote MCP for CLI tool MCP, built to return verdicts, receipts, usage logs, and audit-ready
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/k-grube/conduit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server