sicxz/axcess-mcp-server
A paid MCP server that evaluates typography for accessibility issues beyond what automated scanners catch.
$0.05 USDC per evaluation · Base mainnet · x402 micropayments
---
Automated tools (axe, Lighthouse, WAVE) catch roughly 30% of WCAG failures and almost none of the design-judgment failures. Axcess evaluates:
---
Settings → Integrations → Add MCP Server
https://axcess-mcp-server.fly.dev/mcpAdd to claude_desktop_config.json (or Cursor MCP settings):
{
"mcpServers": {
"axcess": {
"command": "npx",
"args": [
"mcp-remote",
"https://axcess-mcp-server.fly.dev/mcp"
]
}
}
}Use @x402/fetch to handle payment automatically:
import { wrapFetchWithPaymentFromConfig } from '@x402/fetch';
import { ExactEvmScheme } from '@x402/evm/exact/client';
import { privateKeyToAccount } from 'viem/accounts';
const account = privateKeyToAccount(process.env.EVM_PRIVATE_KEY as `0x${string}`);
const fetchWithPayment = wrapFetchWithPaymentFromConfig(fetch, {
schemes: [{ network: 'eip155:*', client: new ExactEvmScheme(account) }],
});
const response = await fetchWithPayment(
'https://axcess-mcp-server.fly.dev/mcp',
{
Loading reviews...