Overview
Untapped MCP is a server designed to work with Claude, providing a way to integrate Untappd API functionalities.
To use Untapped MCP, you need to set up an API key and configure it in the Claude Desktop application by modifying the claude_desktop_config.json file.
- Integration with Untappd API for accessing beer-related data. - Customizable server settings for different environments. - Built using TypeScript for better performance and maintainability.
- Fetching beer information from Untappd for applications.
- Integrating beer data into personal projects or services.
- Enhancing Claude's capabilities with beer-related functionalities.
Add to your AI client
Use these steps to connect untapped-mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"untapped-mcp-etoxin": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-untapped-mcp-etoxin"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"untapped-mcp-etoxin": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-untapped-mcp-etoxin"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"untapped-mcp-etoxin": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-untapped-mcp-etoxin"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"untapped-mcp-etoxin": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-untapped-mcp-etoxin"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"untapped-mcp-etoxin": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-untapped-mcp-etoxin"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"untapped-mcp-etoxin": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-untapped-mcp-etoxin"
]
}
}
}FAQ
What is the purpose of Untapped MCP?
Untapped MCP serves as a bridge between the Untappd API and applications using Claude.
How do I get my API keys?
You can obtain your API keys by registering on the Untappd developer portal.
Is there any documentation available?
Yes, you can find the documentation on the project's GitHub page.