![]()
MistQL is a miniature common expression language for JSON-like structures, built for embedding within applications. It supports logic for querying and manipulating JSON-like data in a simple, readable manner.
For more detailed usage information, please visit MistQL's docs site.
Contributions to MistQL are very welcome!
As MistQL is still a small project, there are no formatting requirements for either issues or pull requests.
If you're planning on making a new implementation, ping the discord and we'll coordinate!
Code contributions to MistQL should roughly follow standard open source workflows:
main branch.No MistQL standard yet exists, but we're aiming for the 0.5.0 release of mistql as a standardizable language. After the 0.5.0 release, we will create a language specification, separate from any implementation.
In the meantime, we're actually pretty close.
We have a Lark grammar
which defines the language's syntax. This is likely the final grammar that will be formalized
into ABNF, although it is possible that we may need to fix minor issues before 0.5.0. I
expect this to barely change, if at all.
Additionally our language-independent test suite is rather extensive and forms the de-facto standard of behaviors, as shared by both Python and JavaScript. While not strictly formalized, the tests and the docs together form a cohesive body of behaviors, that, except for a few minuitae, is of sufficient detail to be standardized.
MistQL's directory struture is a monorepo, currently consisting of these main directories:
/docs: Documentation Site (hosted at mistql.com)/js: MistQL's browser implementation (e.g. mistql on npm)./py: MistQL's python implementation (e.g. mistql on pypi)./shared: Shared assets between all implementation. Contains the language-independent test suite.Docs are built via a fairly standard Docusaurus 2 implementation. Please follow Docusaurus's docs for developing for the Docs site.
mistql on npmmistql is written exclusively using typescript. Additionally, mistql uses yarn for dependency management, versioning, and uploading. JS-specific tests are stored alongside their implementation, using the suffix .spec.ts. Tests that describe the language itself are written in a language agnostic JSON format in the /shared directory. Writing tests for all feature additions and bug fixes is strongly encouraged.
For all major improvements, it is strongly encouraged to run yarn bundlesize to estimate gzipped impact of MistQL on a browser. MistQL for the browser should, in general, remain relatively close to 5kb.
The directory structure is relatively flat, except for the single src/builtins folder, which contains the implementation of all of MistQL's internal functions.
mistql on pypimistql is a fairly standard python package managed with poetry.
Tests can be run using pytest, e.g. poetry run pytest from within the /py directory.
$ claude mcp add mistql \
-- python -m otcore.mcp_server <graph>