MCP Server
Maintained
io.github.darrenjrobinson/untappd MCP Server
io.github.darrenjrobinson/untappd
What is the io.github.darrenjrobinson/untappd MCP server?
MCP server exposing Untappd API tools for AI agents
How to install io.github.darrenjrobinson/untappd
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
UNTAPPD_CLIENT_IDrequiredsecretUntappd API Client ID
UNTAPPD_CLIENT_SECRETrequiredsecretUntappd API Client Secret
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"untappd": {
"command": "npx",
"args": [
"-y",
"untappd-mcp-server"
],
"env": {
"UNTAPPD_CLIENT_ID": "<YOUR_UNTAPPD_CLIENT_ID>",
"UNTAPPD_CLIENT_SECRET": "<YOUR_UNTAPPD_CLIENT_SECRET>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"untappd": {
"command": "npx",
"args": [
"-y",
"untappd-mcp-server"
],
"env": {
"UNTAPPD_CLIENT_ID": "<YOUR_UNTAPPD_CLIENT_ID>",
"UNTAPPD_CLIENT_SECRET": "<YOUR_UNTAPPD_CLIENT_SECRET>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"untappd": {
"command": "npx",
"args": [
"-y",
"untappd-mcp-server"
],
"env": {
"UNTAPPD_CLIENT_ID": "<YOUR_UNTAPPD_CLIENT_ID>",
"UNTAPPD_CLIENT_SECRET": "<YOUR_UNTAPPD_CLIENT_SECRET>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"untappd": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"untappd-mcp-server"
],
"env": {
"UNTAPPD_CLIENT_ID": "<YOUR_UNTAPPD_CLIENT_ID>",
"UNTAPPD_CLIENT_SECRET": "<YOUR_UNTAPPD_CLIENT_SECRET>"
}
}
}
}Claude Code
claude mcp add untappd --env UNTAPPD_CLIENT_ID=<YOUR_UNTAPPD_CLIENT_ID> --env UNTAPPD_CLIENT_SECRET=<YOUR_UNTAPPD_CLIENT_SECRET> -- npx -y untappd-mcp-serverRelated MCP servers
Search the Entra.news newsletter archive — a weekly digest of Microsoft Entra news
7
View repository →TypeScript
io.github.darrenjrobinson/hibp
Maintained
A Model Context Protocol (MCP) server for the Have I Been Pwned (HIBP) API
5
View repository →JavaScript
MIT