diff --git a/docs/README.md b/docs/README.md
index 7119e7f71..bc3880adf 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -199,8 +199,8 @@ Other options are resolving library descriptor from a local file or from remote
  - [lets-plot-gt](https://github.com/JetBrains/lets-plot-kotlin) - Lets-Plot visualisation for GeoTools toolkit
  - [lib-ext](https://github.com/Kotlin/kotlin-jupyter) - Extended functionality for Jupyter kernel
  - [londogard-nlp-toolkit](https://github.com/londogard/londogard-nlp-toolkit) - A Natural Language Processing (NLP) toolkit for Kotlin on the JVM
+ - [multik](https://github.com/Kotlin/multik) - Multidimensional array library for Kotlin
  - [mysql](https://github.com/mysql/mysql-connector-j) - MySql JDBC Connector
- - [numpy](https://github.com/Kotlin/kotlin-numpy) - Kotlin wrapper for Python NumPy package
  - [plotly](https://github.com/mipt-npm/plotly.kt) - An experimental plotly.kt integration module. Supports static plots and HTML dashboards.
  - [plotly-server](https://github.com/mipt-npm/plotly.kt) - An experimental plotly.kt-server integration module. Allows dynamic rendering of changing plots.
  - [serialization](https://github.com/Kotlin/kotlinx.serialization) - Kotlin multi-format reflection-less serialization
diff --git a/libraries/multik.json b/libraries/multik.json
new file mode 100644
index 000000000..eeb67d509
--- /dev/null
+++ b/libraries/multik.json
@@ -0,0 +1,16 @@
+{
+  "description": "Multidimensional array library for Kotlin",
+  "properties": {
+    "v": "0.0.1"
+  },
+  "link": "https://github.com/Kotlin/multik",
+  "dependencies": [
+    "org.jetbrains.kotlinx:multik-api:$v",
+    "org.jetbrains.kotlinx:multik-default:$v"
+  ],
+  "imports": [
+    "org.jetbrains.kotlinx.multik.api.*",
+    "org.jetbrains.kotlinx.multik.ndarray.data.*",
+    "org.jetbrains.kotlinx.multik.ndarray.operations.*"
+  ]
+}
\ No newline at end of file
diff --git a/libraries/numpy.json b/libraries/numpy.json
deleted file mode 100644
index 3be284a20..000000000
--- a/libraries/numpy.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
-  "description": "Kotlin wrapper for Python NumPy package",
-  "properties": {
-    "v": "0.1.4"
-  },
-  "link": "https://github.com/Kotlin/kotlin-numpy",
-  "repositories": [
-    "https://dl.bintray.com/kotlin/kotlin-numpy"
-  ],
-  "dependencies": [
-    "org.jetbrains:kotlin-numpy:$v"
-  ],
-  "imports": [
-    "org.jetbrains.numkt.*",
-    "org.jetbrains.numkt.core.*",
-    "org.jetbrains.numkt.math.*",
-    "org.jetbrains.numkt.random.*",
-    "org.jetbrains.numkt.statistics.*"
-  ]
-}