Skip to main content

max / multithreaded

3.9 KB · 82 lines History Blame Raw
1 # Multithreaded -- Competitive Analysis
2
3 Last updated: 2026-04-02
4
5 ## Positioning
6
7 Multithreaded is forum software designed to be embedded within a creator platform. Each MNW project gets a community forum with zero configuration -- users authenticate via MNW OAuth (PKCE), and moderation integrates with the platform's existing trust system. This is not a standalone forum; it's a community layer for creators who already use Makenotwork.
8
9 The key differentiator is integration depth: no separate auth, no separate user management, no separate moderation tools. A creator enables a forum for their project and it works immediately with their existing audience.
10
11 ## Pricing Comparison
12
13 | App | Price | Model |
14 |-----|-------|-------|
15 | **Multithreaded** | Included with MNW | Part of creator platform |
16 | Discourse | $50-$300/mo (hosted) or self-host | Open source (GPL) |
17 | Circle | $49-$399/mo | SaaS |
18 | Mighty Networks | $41-$360/mo | SaaS |
19 | Lemmy | Free (self-host) | Open source (AGPL) |
20 | Flarum | Free (self-host) | Open source (MIT) |
21 | XenForo | $160 license + $55/yr | Proprietary |
22
23 ## Feature Matrix
24
25 | Feature | MT | Discourse | Circle | Lemmy | Flarum |
26 |---------|:--:|:---------:|:------:|:-----:|:------:|
27 | Platform-integrated auth | Y | N | N | N | N |
28 | Creator project communities | Y | N | N | N | N |
29 | Categories | Y | Y | Y | Y | Y |
30 | Threads + replies | Y | Y | Y | Y | Y |
31 | Role-based moderation | Y | Y | Y | Y | Y |
32 | Soft deletes + audit trail | Y | Y | N | N | N |
33 | SSO/OAuth | Y (native) | Y (plugin) | Y | N | Y (ext) |
34 | Federation | N | N | N | Y | N |
35 | Real-time | N | Y | Y | N | N |
36 | Email notifications | N | Y | Y | Y | Y |
37 | Mobile app | N | Y | Y | Y | N |
38 | Plugins/extensions | N | Y | N | N | Y |
39 | Self-hostable | Y | Y | N | Y | Y |
40 | Markdown rendering | Y | Y | N | Y | Y |
41 | @mentions | Y | Y | Y | Y | N |
42
43 ## Competitor Deep Dives
44
45 ### 1. Discourse
46
47 Industry-standard open-source forum software. Feature-rich (badges, trust levels, SSO, plugins, real-time). Hosted plans start at $50/mo. Self-hosting requires significant infrastructure. Overkill for small creator communities.
48
49 **What MT lacks:** real-time updates, email notifications, trust levels, badges, plugins, mobile app, search, private messaging.
50
51 ### 2. Circle
52
53 Community platform with membership gating, Stripe integration, courses, events. Hosted-only SaaS ($49-$399/mo). Targets creators and course builders.
54
55 **What MT lacks:** events, courses, membership tiers in the forum itself, mobile app. **What Circle lacks:** self-hosting, source availability, per-project granularity, zero-config creator integration.
56
57 ### 3. Lemmy
58
59 Federated link aggregator (Reddit alternative) built in Rust. ActivityPub protocol for cross-instance communication. Community-run, no monetization.
60
61 **What MT lacks:** federation, voting/karma, link aggregation. **What Lemmy lacks:** creator platform integration, OAuth from parent platform, per-project communities.
62
63 ### 4. Flarum
64
65 Lightweight, modern forum software (PHP). Extensible via community packages. Free and open source. Clean UI but limited moderation tools in core.
66
67 **What MT lacks:** extension system, search, rich text editor. **What Flarum lacks:** integrated auth, creator platform awareness, Rust performance.
68
69 ## What We Offer That Competitors Don't
70
71 - **Zero-config community per project** -- creator enables a forum and it works with their existing MNW audience
72 - **Native platform authentication** -- MNW OAuth PKCE flow, no separate accounts or passwords
73 - **Integrated moderation** -- platform-level suspensions cascade to forums; no separate admin panel
74 - **Lightweight deployment** -- single Rust binary, systemd unit, no Docker or external services
75 - **Source-available** -- PolyForm Noncommercial 1.0.0
76
77 ## Target Users
78
79 - MNW creators who want discussion forums for their projects
80 - Open-source maintainers using MNW for distribution who want community feedback
81 - Small communities that don't need the complexity of Discourse or the cost of Circle
82