Install
$ agentstack add mcp-sanket-164-mcp-servers ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
MCP Servers
clash-of-clans: https://sanket-mcps.vercel.app/mcp/clash-of-clansbrawlstars: https://sanket-mcps.vercel.app/mcp/brawlstarsleetcode: https://sanket-mcps.vercel.app/mcp/leetcodemealdb: https://sanket-mcps.vercel.app/mcp/mealdb
Use cases
brawlstars: player and club lookups, rankings by country/global, and matchup-style comparisons.clash-of-clans: clan scouting and war readiness summaries, war log lookups, and player/clan comparison helpers.leetcode: user profile analysis, problem discovery (by tag/difficulty), contest information, and discussion topic exploration.mealdb: recipe search, category/ingredient/cuisine filtering, and recipe-guided meal inspiration or planning.
Server-specific docs
- [Brawl Stars MCP](server/src/mcp/brawlstars/README.md)
- [Clash of Clans MCP](server/src/mcp/clash-of-clans/README.md)
- [LeetCode MCP](server/src/mcp/leetcode/README.md)
- [TheMealDB MCP](server/src/mcp/mealdb/README.md)
Setup
Connect Remote Server
- Open Claude.
- Go to Custom Connector.
- Add your MCP server URL and your preferred name.
- Select Always Allow so the AI does not ask for permissions repeatedly.
Setup Locally
- Clone the repository, install dependencies, and build the server.
git clone https://github.com/sanket-164/MCP-Servers.git
cd MCP-Servers/server
npm install
npm run build
- Open Claude Desktop.
- Go to Settings.
- Go to Developer Mode and click Edit Config.
- Edit the config by adding static paths to mcp servers file and save it.
{
...
,
"mcpServers": {
"mealdb-mcp": {
"command": "node",
"args": [
"[Parent-Folder]\\MCP-Servers\\server\\dist\\mcp\\mealdb\\stdio.js"
]
},
"leetcode-mcp": {
"command": "node",
"args": [
"[Parent-Folder]\\MCP-Servers\\server\\dist\\mcp\\leetcode\\stdio.js"
]
},
"clashofclans-mcp": {
"command": "node",
"args": [
"[Parent-Folder]\\MCP-Servers\\server\\dist\\mcp\\clash-of-clans\\stdio.js"
]
},
"brawlstars-mcp": {
"command": "node",
"args": [
"[Parent-Folder]\\MCP-Servers\\server\\dist\\mcp\\brawlstars\\stdio.js"
]
}
}
}
- Reopen Claude Desktop and go to Developer Mode.
- Select Always Allow so the AI does not ask for permissions repeatedly.
Demo prompts (copy-paste)
Clash of Clans
Provide a complete summary of a clan tag [clanTag] in clash of clans. Include clan profile, members, war activity, and key insights.
Brawl Stars
Provide a full report for brawlstars player tag [playerTag]. Include trophies, top brawlers, recent performance, and improvement suggestions.
LeetCode
Compare these two leetcode profiles: [username1] and [username2]. Show solved counts by difficulty, contest performance, language usage, strengths, and a final comparison summary.
TheMealDB
Suggest a few categories or cuisines I can cook from. Then recommend one dish with its complete recipe, ingredients list, and step-by-step instructions.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: sanket-164
- Source: sanket-164/MCP-Servers
- License: MIT
- Homepage: https://sanket-mcps.vercel.app/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.