- Home
- MCP servers
- AutoProvisioner
AutoProvisioner
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
The AutoProvisioner MCP Server helps you provision MCP clients on demand, either by connecting to a remote provisioner over SSE or by running a local, self-contained provisioner process. This gives you flexible, automated provisioning capabilities for your MCP ecosystem, whether you prefer a remote service or an isolated local setup.
How to use
You can provision MCP clients by connecting to a remote provisioner that streams events, or by running a local provisioner on your machine. Use the remote path when you want centralized provisioning managed outside your environment. Use the local path when you want a standalone provisioner that operates entirely within your system. The remote option communicates over SSE and requires Node and NPM to be installed. The local option runs as a stdio-based process with no system dependencies.
How to install
Prerequisites and installation options are described below. Choose the path that fits your deployment needs.
Remote (Recommended) installation requires node and npm to be installed and uses a remote, SSE-based communication channel. Configure the MCP server as shown.
{
"mcpServers": {
"autoprovisioner": {
"command": "npx",
"args": [
"mcp-remote",
"https://autoprovisioner-remote.zerosync.co/sse"
]
}
}
}
Local installation runs without system dependencies and uses a local stdio-based communication channel. Follow these steps to install and run the local provisioner.
curl -fsSL https://raw.githubusercontent.com/zerosync-co/mcp-server-autoprovisioner/main/install-prerelease.sh | bash
mcp-server-autoprovisioner init
{
"mcpServers": {
"autoprovisioner": {
"command": "path/to/mcp-server-autoprovisioner", // which mcp-server-autoprovisioner
"args": [
"run",
"user_..." // mcp-server-autoprovisioner whoami
]
}
}
}
Additional</heading>
For build-from-source and testing options, you have the following commands to refer to during setup and validation.
# Build from source
deno compile \
--output mcp-server-autoprovisioner \
--env-file=".env" \
--no-check \
-A stdio/index.ts
# Testing options
npx @modelcontextprotocol/inspector
Available tools
inspector
A tool used to inspect MCP connections and state during testing and debugging.