Microcessor is an ecosystem of small, powerful productivity apps. Each works alone. Together, they form the only workspace you'll ever need.
Free forever for small teams. No credit card required.Start with one app. As you grow, connect more. They sync seamlessly through a shared event bus.
Your social hub. See what's happening across your workspace, celebrate birthdays, share recipes and news.
Always freeLeave management with approval workflows. Syncs with People for manager routing.
Per userLightweight email client with hosted mailbox. Send and receive without leaving your workspace.
Per userFull RRULE support. Automatically reflects approved vacations and team schedules.
Per userTeam and direct messaging with channels, threads, and real-time delivery.
Per userVoice and video calls with your team. Crystal-clear audio powered by dedicated media servers.
Per minutePersistent drop-in audio rooms for casual team collaboration. Like hallway conversations, but remote.
Per user + minutesSend, sign, and track documents. Legally binding e-signatures with full audit trails.
Per documentCloud file storage and sharing. Organized by workspace, accessible everywhere.
Per GBPeople management and HR workflows. Onboarding, offboarding, and everything between.
Per userPersonal and team tasks with Kanban boards, assignments, and due dates.
Per userInternal knowledge base. Write, organize, and share documentation with your team.
Flat monthlyEach app is a micro-utility that does one thing exceptionally well. Connect them when you're ready.
Create a free workspace. Install any app — it works instantly as a standalone tool. No setup, no dependencies.
Install a second app and they automatically sync. Vacation requests route to managers from People. Calendar shows approved leave. Events flow through the bus.
Every app lives on its own subdomain. Access them individually or switch between them from account.microcessor.com. Install as PWAs for a desktop-native feel.
$2/user/mo per app, or get all apps from $7/user/mo. First 5 users free on every app.
See pricing & calculatorMicrocessor is an open platform. Build a Heaven plugin, publish it to apps.microcessor.com, set your price, and earn 80% of every dollar.
(req, res, ctx)
ext.you.app.*
# manifest.py manifest = { "name": "Invoices", "publisher": "acme", "subdomain": "invoices", "events": { "emits": ["ext.acme.invoices.invoice.created"], "listens": ["core.people.member.created"], }, } # plugin.py from heaven import App app = App() app.GET("/", "handlers.index") app.POST("/invoices", "handlers.create") class InvoicesPlugin: def install(self, host_app): sub = host_app.subdomain("invoices") sub.mount(app)