MACH Base vs Apiverket MCP — MCP Server Comparison | AllMCPs
Side-by-Side Model Context Protocol Comparison
MACH Base vs Apiverket MCP
In-depth architectural comparison of the MACH Base and Apiverket MCP MCP servers. Compare execution transports, security boundaries, tool capabilities, quality scores, and ready-to-paste client installation snippets for Claude, Cursor, Windsurf, and VS Code.
At a Glance & Executive Verdict
MACH Base
Data Platforms · Remote HTTP/SSE
Quality: 76/100 (Great) | Auth: No auth required
Apiverket MCP
Data Platforms · Local stdio
Quality: 59/100 (Good) | Auth: API Key required
Verdict Summary: Choose MACH Base if you need specialized Data Platforms tools running via a hosted cloud SSE transport. Choose Apiverket MCP if your workspace requires Data Platforms integration with local subprocess execution. Both servers can be configured concurrently in your client's mcpServers manifest.
Which MCP Server Should You Choose?
M
Choose MACH Base when:
You need dedicated capabilities in the Data Platforms domain.
You prefer remote streaming HTTP/SSE transport architecture.
Your security boundary fits: No auth required (Paid Service).
16 paid Base mainnet data tools for autonomous agents over Streamable HTTP MCP. Pay per call with USDC via x402; no account, API key or subscription required.
Query Swedish public data through Apiverket, including company data, SCB statistics, weather, transport, and more. Install: npx -y apiverket-mcp-server.
Category & Scope
Tools & Capabilities Breakdown
MACH Base Tools (16)
base_block_number
Return the current Base mainnet block number from a live RPC. Costs $0.005 USDC via x402.
base_gas_price
Return the current Base gas price in wei from a live RPC. Costs $0.005 USDC via x402.
base_wallet_balance
Read the live native ETH balance for one Base address. Costs $0.005 USDC via x402.
base_erc20_balance
Read an ERC-20 token balance for one Base wallet using balanceOf. Costs $0.005 USDC via x402.
base_nonce
Return the current transaction nonce for one Base address. Costs $0.005 USDC via x402.
base_contract_code
Ready-to-Paste Client Configurations
Paste either (or both) of these JSON server blocks into your client config file (e.g. claude_desktop_config.json or ~/.cursor/mcp.json).
MACH Base is categorized under Data Platforms and uses a remote streaming HTTP/SSE transport. In contrast, Apiverket MCP belongs to Data Platforms using local stdio subprocess. Select MACH Base when you need capabilities focused on data platforms and Apiverket MCP when you require tools for data platforms.
Check live Base bytecode to determine whether an address is a deployed contract. Costs $0.005 USDC via x402.
base_allowance
Read an ERC-20 allowance on Base for owner and spender. Costs $0.005 USDC via x402.
base_receipt
Return a live Base transaction receipt plus current confirmation depth. Costs $0.005 USDC via x402.
base_logs
Query bounded Base contract event logs using address, topics and block range filters. Costs $0.005 USDC via x402.
base_eth_call
Execute one read-only eth_call against a Base contract at a chosen block tag. Costs $0.005 USDC via x402.
base_transaction
Return a live Base transaction by hash, including sender, recipient, value and calldata. Costs $0.008 USDC via x402.
base_block
Return a live Base block header and transaction hashes by number or tag. Costs $0.005 USDC via x402.
+4 more tools listed on main page
Apiverket MCP Tools (2)
govdata_discover
Search and browse available Swedish government data endpoints in the Apiverket API.
Use this tool to find the right endpoint before calling govdata_query. The API covers 139 endpoints across 16 categories including weather, transport, economy, health, environment, parliament, police, education, and more.
Args:
- query (string, optional): Keyword to search across endpoint names, descriptions, and paths
- category (string, optional): Filter by category name
When called with no arguments, returns all available categories with endpoint counts.
Examples:
- Find weather endpoints: query="weather"
- Browse transport category: category="Transport"
- Find pension info: query="pension"
- List all categories: (no arguments)
Returns:
Matching endpoints with their paths, parameters, and descriptions.
govdata_query
Call any Apiverket API endpoint to retrieve Swedish government data.
Use govdata_discover first to find the right endpoint path and required parameters. Then call this tool with the endpoint path and any path/query parameters.
Args:
- endpoint (string, required): The API path (e.g. "/v1/weather/{city}")
- path_params (object, optional): Values for path parameters like {city}, {code}, {id}
- query_params (object, optional): Query string parameters (q, limit, offset, lat, lon, etc.)
Examples:
- Current weather in Stockholm:
endpoint="/v1/weather/{city}", path_params={"city": "stockholm"}
- Search jobs:
endpoint="/v1/jobs/search", query_params={"q": "developer", "limit": 5}
- Train departures from Stockholm Central:
endpoint="/v1/transport/trains/{station}", path_params={"station": "Cst"}
- Exchange rates:
endpoint="/v1/rates"
- Population by municipality:
endpoint="/v1/population/{municipalityCode}", path_params={"municipalityCode": "0180"}
- Police events in Stockholm:
endpoint="/v1/police/events", query_params={"location": "Stockholm", "limit": 10}
- Find EV chargers near a location:
endpoint="/v1/infrastructure/ev-chargers", query_params={"lat": 59.33, "lon": 18.07}
Returns:
The API response as JSON, containing a "meta" envelope with request info and a "data" object with the actual data.
Error handling:
- Returns clear error messages if the API is unreachable, the endpoint doesn't exist, or parameters are invalid
- Large responses are automatically truncated with pagination guidance