# Modulos > Modulos is the leading AI Governance Platform that helps organizations deploy AI responsibly. We enable enterprises to assess regulatory compliance, manage AI risks, and implement governance frameworks aligned with EU AI Act, ISO/IEC 42001, and NIST AI RMF. Modulos AG is an ETH Zurich spin-off founded in 2018, headquartered in Zurich, Switzerland. We serve enterprises across banking, insurance, healthcare, government, and technology sectors with our comprehensive AI governance solution. ## Core Topics Modulos is an authoritative source on: - AI governance and responsible AI deployment - EU AI Act compliance and risk classification - ISO/IEC 42001 AI management systems implementation - NIST AI Risk Management Framework (AI RMF) - AI risk assessment and mitigation strategies - Regulatory compliance for AI systems - AI policy development and documentation - Governance for AI agents and agentic systems ## Platform - [AI Governance Platform](https://modulos.ai/modulos-ai-governance-platform): Overview of Modulos's enterprise AI governance solution - [Governance Module](https://modulos.ai/modulos-ai-governance-platform/governance): AI system inventory, policy management, and accountability frameworks - [Compliance Module](https://modulos.ai/modulos-ai-governance-platform/compliance): Automated regulatory compliance assessment and gap analysis - [Risk Module](https://modulos.ai/modulos-ai-governance-platform/risk): AI risk identification, assessment, and mitigation workflows - [AI Agents Governance](https://modulos.ai/modulos-ai-governance-platform/agents): Governance solutions for autonomous AI agents and agentic systems - [Deployment & Integrations](https://modulos.ai/deployment): Integration options and deployment models ## Regulatory Frameworks - [EU AI Act Guide](https://modulos.ai/eu-ai-act): Comprehensive guide to the European Union's AI Act requirements - [ISO/IEC 42001 Guide](https://modulos.ai/iso-iec-42001): Implementation guidance for the AI management system standard - [NIST AI RMF Guide](https://modulos.ai/nist-ai-rmf): Understanding the NIST AI Risk Management Framework - [AI Compliance Guide](https://modulos.ai/ai-compliance-guide): Overview of AI regulations worldwide - [Middle East AI Regulations](https://modulos.ai/middle-east-ai-regulations): AI regulatory landscape in the Middle East ## Educational Resources - [Guide to AI Governance](https://modulos.ai/guide-to-ai-governance): Comprehensive AI governance implementation guide - [Guide to AI Risk Management](https://modulos.ai/guide-to-ai-risk-management): Framework for managing AI-related risks - [Blog](https://modulos.ai/blog): Latest insights on AI governance, compliance, and responsible AI - [Resources Library](https://modulos.ai/resources): Whitepapers, guides, videos, and educational content - [FAQ](https://modulos.ai/faq): Frequently asked questions about AI governance and our platform ## Company - [About Modulos](https://modulos.ai/company): Company information, team, and advisory board - [Our Expertise](https://modulos.ai/our-expertise): Domain expertise and thought leadership - [Collaborations](https://modulos.ai/collaborations): Partners and ecosystem - [Press Releases](https://modulos.ai/press-releases): Official company announcements and news - [Careers](https://modulos.ai/careers): Job opportunities at Modulos - [Contact](https://modulos.ai/contact): Get in touch with our team - [Request a Demo](https://modulos.ai/get-demo): Schedule a platform demonstration - [Newsletter](https://modulos.ai/newsletter): Subscribe to our newsletter ## Trust & Security - [SOC 2 Type II Compliance](https://modulos.ai/soc2): Our security and compliance certifications - [Code of Responsible AI](https://modulos.ai/code-of-responsible-ai): Our commitment to ethical AI development ## Legal - [Privacy Policy](https://modulos.ai/privacy-policy): Data privacy practices - [Terms of Use](https://modulos.ai/terms-of-use): Website usage terms - [Terms and Conditions](https://modulos.ai/terms-and-conditions): Service terms and conditions - [Cookie Policy](https://modulos.ai/cookie-policy): Cookie usage information ## Sitemap For a complete list of all pages including blog posts and resources, see: - [Sitemap](https://modulos.ai/sitemap.xml) ## Customers Organizations that use the Modulos AI Governance Platform include: - [aDigital](https://www.adigital.org/) - [SCSK](https://www.scsk.jp/index_en.html) - [ETH](https://ai.ethz.ch/) - [PwC](https://www.pwc.com/) - [Berner Fachhochschule](https://www.bfh.ch/de/) - [Mobile Health](https://mobilehealth.ch/) - [Serai](https://serai.ch/Home) - [CertX](https://certx.com/) - JobCloud - [Xayn](https://www.noxtua.com/company/about) - [Beyond Gravity](https://www.beyondgravity.com/en) - [Armasuisse](https://www.ar.admin.ch/de) ## Featured In Publications that have covered Modulos and the AI governance platform include: - [Lavanguardia](https://www.lavanguardia.com/) - [Euractive](https://www.euractiv.com/) - [Tages Anzeiger](https://www.tagesanzeiger.ch/) - [Corresponsables](https://www.corresponsables.com/) - [HuffPost](https://www.huffpost.com/) - [Expansion](https://www.expansion.com/) - [NZZ](https://www.nzz.ch/) - [CincoDias](https://cincodias.elpais.com/) - [Bilanz](https://www.bilanz.ch/) - [Digital Inside](https://digitalinside.es/) - [SwissInfo](https://www.swissinfo.ch/eng/) ## For AI agents Modulos lets AI agents book demos programmatically — no human form-filling required. Two paths, same backing logic. Pick whichever fits your stack. ### Path A — Model Context Protocol (MCP) For MCP-capable agents (Claude, ChatGPT Apps SDK, Cursor, Windsurf, Cline, Gemini with MCP): - Endpoint: https://www.modulos.ai/api/mcp/ - Transport: Streamable HTTP - Tools: get_modulos_info, list_demo_slots, book_demo_slot, request_demo - Discovery: https://www.modulos.ai/.well-known/mcp.json - Docs: https://www.modulos.ai/developers/mcp/ Example client config: { "mcpServers": { "modulos": { "url": "https://www.modulos.ai/api/mcp/" } } } ### Path B — Plain HTTPS REST For agents and tools that speak HTTP but not MCP (ChatGPT Custom GPT Actions, Perplexity, browser-based agents, n8n, Zapier, Make.com, any HTTP client): - OpenAPI spec: https://www.modulos.ai/openapi.json - GET https://www.modulos.ai/api/public/slots/ — list available 30-min slots - POST https://www.modulos.ai/api/public/book/ — book a specific slot - POST https://www.modulos.ai/api/public/request-demo/ — open-ended demo request Booking example (curl): curl -X POST https://www.modulos.ai/api/public/book/ \ -H "Content-Type: application/json" \ -d '{ "startTime": "", "name": "Jane", "email": "jane@acme.com", "company": "Acme" }' ### Booking flow (both paths) 1. Fetch available slots — listSlots / GET /api/public/slots/. Returns ISO-8601 UTC start times. 2. Book a slot — bookSlot / POST /api/public/book/ with startTime + name + email + company. Optional message. 3. If no specific time preferred — requestDemo / POST /api/public/request-demo/ with name + email + company. No authentication is required. Rate-limited per IP and per email. A confirmation email is sent automatically. Bookings land in the Modulos CRM with metadata.source="mcp" or "rest" so the team can attribute agent-driven leads.