What is the io.github.sandsower/kronan-mcp MCP server?
MCP server for the Krónan grocery store API (Iceland)
How to install io.github.sandsower/kronan-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
KRONAN_ACCESS_TOKENrequiredsecretKrónan API access token (act_ prefix). Created via Audkenni login in customer group settings.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"kronan-mcp": {
"command": "npx",
"args": [
"-y",
"kronan-mcp"
],
"env": {
"KRONAN_ACCESS_TOKEN": "<YOUR_KRONAN_ACCESS_TOKEN>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"kronan-mcp": {
"command": "npx",
"args": [
"-y",
"kronan-mcp"
],
"env": {
"KRONAN_ACCESS_TOKEN": "<YOUR_KRONAN_ACCESS_TOKEN>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"kronan-mcp": {
"command": "npx",
"args": [
"-y",
"kronan-mcp"
],
"env": {
"KRONAN_ACCESS_TOKEN": "<YOUR_KRONAN_ACCESS_TOKEN>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"kronan-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"kronan-mcp"
],
"env": {
"KRONAN_ACCESS_TOKEN": "<YOUR_KRONAN_ACCESS_TOKEN>"
}
}
}
}Claude Code
claude mcp add kronan-mcp --env KRONAN_ACCESS_TOKEN=<YOUR_KRONAN_ACCESS_TOKEN> -- npx -y kronan-mcpRelated MCP servers
MCP server for Icelandic weather, forecasts, warnings, and earthquakes from vedur.is.
View repository →