At the start of this year, I spent some time visualizing the Wikibase ecosystem by making use of the data that has been collected on wikibase.world. As part of that, I tried to focus in on Wikibase Suite, trying to determine how many possible installations there were making use of the container images, and or the newer Wikibase Suite Deploy thing.
I came to the number 33, based on the fact that there were this many sites online on wikibase.world that have an exact match to the MediaWiki versions that have been released as part of the Wikibase Suite container images. And in all cases, this would be an overestimate, given that these versions would also be installed by some not using the images, so the likely number would be closer to ~16…
And of the 33 sites that might possibly be using “suite” as they are on the same version at least, probably 50% are installed via other means, so the “suite” installations probably account for ~16 of the wikibases in wikibase.world at a guesstimate, with ~50 using other methods and 711 using wikibase.cloud.
9th December 2025 Edit
Apparently this post attracted some attention, and I want to make it clear that “Wikibase suite” here is specifically talking about the packaging up of the container images / docker images into some single installable reusable magic component, and support system around it.
I personally believe the container images themselves are a great asset, and the idea of a suite of recommended extensions and applications that should be delivered alongside a Wikibase is also an asset that the ecosystem does need.
Also looking at the “Wikibase Suite Team” board for “Sprint 9 (Nov 25 – Dec 9)” federation is a key topic that is currently being worked on, and tasks like T404547 [Self-Hosting Ops] Define metric for ease of self-hosting show that the team is / has moved away from only thinking about the magic packaged layer.

Updated count
10 months on from this first look, while visiting the Wikimedia Germany offices, I found the need once again to try to come up with concrete numbers in terms of the users of Wikibase Suite, where my general motive would be to convince WMDE that resources are better spent in other places, such as supporting the underlying software, not just this fancy wrapper on top.
And with this new analysis, my revised number is roughly 18, of which 9 are possibly active, and 2 are likely lost to bot spam. You can find the list via this rather lengthy wikibase.world query.
Naturally, there could be sites that have not been discovered by wikibase.world, however, I’d argue then that they do not make up part of the Wikibase ecosystem, and thus are unlikely to be worth the time to WMDE. (Maybe they are just entirely private)…
Having a quick look at the site install years too, we can see that adoption of suite as a method of using Wikibase is not exactly booming.
- 1 site from 2018
- 1 site from 2020
- 2 sites from 2021
- 4 sites from 2023
- 7 sites from 2024
- 3 sites from 2025
Identifying via MW + PHP version
Part of the SPARQL query includes a long list of PHP and MW version combinations, all of which have been extracted from every published wikibase container image, using a few scripts that are published in a git repository.
WHERE {
# --- 1. Define the Allowed Pairs (The Filter) ---
# The query will only look for items matching these specific combinations
VALUES (?mwVersion ?phpVersion) {
("1.29.2" "7.1.18")
("1.30.1" "7.1.26")
...Code language: PHP (php)
These exist side by side within a single container, and are easily extractable from the version information of a site. For example, on the Special:Version page of librarybase (or also via API).
Addbot, that spams data into wikibase.world was also then made to scrape this data, and add it to a few new properties for easy querying. PHP Version (P68), MediaWiki DB Type (P69), MediaWiki DB Version (P70).

For the future
This method can still be useful for a rough count moving forward, however we can easily make this far more accurate, by making suite actually tell us when it is being used. See T411587 (Expose if the wikibase suite image is being used, and if wikibase deploy is being used, and at which version).
I hope the team will try and get this pull request merged ahead of the next release so that we have a very easy indicator to see if the images, or wikibase deploy that is built on top of them, is being used much in the wild.