{
"mcpServers": {
"mcp-server-in-clicks": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 212 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server In Clicks and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
No‑code SaaS to deploy custom Model Context Protocol (MCP) servers from JSON config. This monorepo includes:
mark3labs/mcp-go.
├─ mcp-server-template/ # Go MCP server template (SDK: mark3labs/mcp-go)
│ ├─ cmd/server/ # Main entrypoint
│ ├─ internal/ # config, handlers, server, validation
│ ├─ examples/ # JSON configs (tools/prompts/resources)
│ ├─ deploy/helm/ # Helm chart for MCP server instances
│ ├─ Dockerfile # Multi‑stage Docker build
│ └─ Makefile # Build/test/lint/docker/helm
├─ backend/ # Go backend API + CLI (Cobra, chi, viper)
│ ├─ cmd/ # CLI entrypoints
│ ├─ internal/ # api, auth, config, helm svc, storage
│ ├─ Dockerfile # Backend Docker image
│ ├─ k8s.yaml # Backend Kubernetes manifests
│ └─ Makefile # Build/test/docker/k8s/helm helpers
└─ frontend/ # React + TypeScript + Tailwind SaaS UI
└─ (Vite, route guard, auth store, pages)
cd mcp-server-template
go build -o mcp-server cmd/server/main.go
./mcp-server --config examples/simple-server.json --port 9090 --log-level debug
curl -s -X POST http://127.0.0.1:9090/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | jq
You should see your configured tools. To call a tool, pass parameters via tools/call:
curl -s -X POST http://127.0.0.1:9090/mcp \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc":"2.0",
"id":2,
"method":"tools/call",
"params":{
"name":"get_quote",
"arguments":{}
}
}' | jq
Tip: To use this server from Cursor/Claude locally, point your client to http://127.0.0.1:9090/mcp (e.g. Cursor’s ~/.cursor/mcp.json).
/.well-known/oauth-protected-resource for discoveryWWW-Authenticate challenges on /mcp when enabled{
"server": { "name": "example", "version": "0.1.0" },
"runtime": { "default_timeout": "10s" },
"security": {
"oauth": {
"enabled": true,
"accepted_audiences": ["your-client-id"],
"required_scopes": ["read"]
}
},
"tools": [
{
"name": "get_quote",
"description": "Get a random quote",
"endpoint": "https://zenquotes.io/api/random",
"method": "GET",
"timeout": "10s"
}
]
}
cd mcp-server-template
docker build -t sanskardevops/mcp-server-template:0.0.1
... [View full README on GitHub](https://github.com/Sanskarzz/mcp-server-in-clicks#readme)