Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"replicated-mcp-server": {
"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.
A Machine Chat Protocol (MCP) server that interfaces with the Replicated Vendor Portal API, enabling AI agents to interact with Replicated Vendor Portal accounts.
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.
Be 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 devops
MCP server for using the GitLab API
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
MCP server for ZenML - browse stacks, pipelines, runs, artifacts & trigger pipeline runs via API
TypeScript MCP server for AI-powered containerization workflows with Docker and Kubernetes support
MCP Security Weekly
Get CVE alerts and security updates for Replicated Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Machine Chat Protocol (MCP) server that interfaces with the Replicated Vendor Portal API, enabling AI agents to interact with Replicated Vendor Portal accounts.
This project implements an MCP server that allows AI agents to access and manipulate Replicated Vendor Portal resources through a standardized interface following the MCP protocol.
go install github.com/crdant/replicated-mcp-server/cmd/server@latest
Or download pre-built binaries from the releases page.
REPLICATED_API_TOKEN="your-api-token" replicated-mcp-server
Or with command-line flags:
replicated-mcp-server --api-token="your-api-token" --log-level=info
| Flag | Environment Variable | Description | Default |
|---|---|---|---|
--api-token | REPLICATED_API_TOKEN | Replicated Vendor Portal API token | (required) |
--log-level | LOG_LEVEL | Log level (fatal, error, info, debug, trace) | fatal |
--timeout | TIMEOUT | API request timeout in seconds | 30 |
This project uses standard Go development practices.
# Clone the repository
git clone https://github.com/crdant/replicated-mcp-server.git
cd replicated-mcp-server
# Install dependencies
go mod download
# Run tests
go test ./...
# Build the binary
go build -o replicated-mcp-server ./cmd/server