AutoProvisioner
A server for automated provisioning, supporting both local and remote communication protocols.
AutoProvisioner MCP Server (open beta)
Installation
- Remote (Recommended)
- requires node and npm to be installed
- remote, SSE-based communication
Update configuration as follows:
{
"mcpServers": {
"autoprovisioner": {
"command": "npx",
"args": [
"mcp-remote",
"https://autoprovisioner-remote.zerosync.co/sse"
]
}
}
}
- Local
- no system dependencies
- local, stdio-based communication
Step 1:
curl -fsSL https://raw.githubusercontent.com/zerosync-co/mcp-server-autoprovisioner/main/install-prerelease.sh | bash
Step 2:
Run mcp-server-autoprovisioner init
, or update configuration as follows
{
"mcpServers": {
"autoprovisioner": {
"command": "path/to/mcp-server-autoprovisioner", // which mcp-server-autoprovisioner
"args": [
"run",
"user_..." // mcp-server-autoprovisioner whoami
]
}
}
}
Build From Source
deno compile \
--output mcp-server-autoprovisioner \
--env-file=".env" \
--no-check \
-A stdio/index.ts
Testing options
npx @modelcontextprotocol/inspector
Related Servers
MCP SysOperator
Manages Infrastructure as Code (IaC) operations using Ansible and Terraform. Requires external tools and manual setup.
Superface
Provides Superface tools for the Model Context Protocol, requiring a SUPERFACE_API_KEY.
SQLFluff Analyzer
Analyze, lint, and fix SQL queries using the SQLFluff linter.
Remote MCP Server (Authless)
A remote MCP server deployable on Cloudflare Workers without authentication.
TypeScript MCP
A TypeScript-specialized server providing advanced code manipulation and analysis capabilities.
Webflow
Interact with the Webflow API to manage sites, collections, and items.
Enhanced QR Code MCP Server
Generates QR codes with metadata, batch processing, and file management tools.
MediaWiki MCP Server
Enables LLM clients to interact with any MediaWiki wiki using the Model Context Protocol.
Testomat.io
Integrate Testomat.io API with AI assistants for test management.
Remote MCP Server Kindler
A template for deploying a remote MCP server without authentication on Cloudflare Workers.