Enterprise-grade MCP infrastructure hosted on Cloudflare Edge. Connect your AI applications to powerful remote capabilities.
Deploy Workers, manage DNS, purge cache, and control your edge infrastructure.
Headless browser control with Puppeteer for web scraping and testing.
Secure file operations with R2 storage and KV namespace support.
Real-time analytics with D1 database and custom dashboards.
Bank-grade security with JWT tokens and API key authentication.
Native integration with AI agents and swarm coordination.
const response = await fetch('https://mcp.tfantas.io/health');
const data = await response.json();
console.log(data);
{
"status": "healthy",
"timestamp": "2025-01-15T05:00:00.000Z",
"version": "1.0.3",
"platform": "AIx MCP Remote Platform"
}
npm install @aix/mcp-client
import MCPClient from '@aix/mcp-client';
const mcp = new MCPClient({
baseUrl: 'https://mcp.tfantas.io',
apiKey: 'your-api-key'
});
// Deploy a Worker
await mcp.cloudflare.deployWorker(config);
// Automate browser
const session = await mcp.browser.createSession();
await mcp.browser.navigate(session.id, 'https://example.com');
// Track analytics
await mcp.analytics.trackEvent({ event: 'user_action' });