diff --git a/README.md b/README.md
index 1fee4347d..6b91c5247 100644
--- a/README.md
+++ b/README.md
@@ -176,7 +176,7 @@ The [Playground](https://mqlang.org/playground) lets you run mq queries in the b
### Web API
-You can try mq without installing anything via the hosted REST API at https://api.mqlang.org.
+You can try mq without installing anything via the hosted REST API at [https://api.mqlang.org](https://api.mqlang.org).
The interactive API documentation is available at [Swagger UI](https://api.mqlang.org/docs).
@@ -186,13 +186,7 @@ The interactive API documentation is available at [Swagger UI](https://api.mqlan
## Language Bindings
-Language bindings are available for the following programming languages:
-
-- [mq_elixir](https://github.com/harehare/mq_elixir)
-- [mq-python](https://github.com/harehare/mq-python)
-- [mq-ruby](https://github.com/harehare/mq-ruby)
-- [mq-java](https://github.com/harehare/mq-java)
-- [mq-go](https://github.com/harehare/mq-go)
+Language bindings are available for Elixir, Python, Ruby, Java, and Go. See the [Language Bindings documentation](https://mqlang.org/book/start/language_bindings.html) for details.
## Usage
diff --git a/docs/books/src/SUMMARY.md b/docs/books/src/SUMMARY.md
index 8a1e9b066..14e0fa776 100644
--- a/docs/books/src/SUMMARY.md
+++ b/docs/books/src/SUMMARY.md
@@ -11,6 +11,7 @@
- [MCP](start/mcp.md)
- [Debugger](start/debugger.md)
- [External Subcommands](start/external_subcommands.md)
+ - [Language Bindings](start/language_bindings.md)
- [Example](start/example.md)
- [Reference](reference/index.md)
- [CLI](reference/cli.md)
diff --git a/docs/books/src/sitemap.xml b/docs/books/src/sitemap.xml
index c7e24fc3d..e73e03a2c 100644
--- a/docs/books/src/sitemap.xml
+++ b/docs/books/src/sitemap.xml
@@ -53,6 +53,10 @@
https://mqlang.org/book/start/external_subcommands
1.0
+
+ https://mqlang.org/book/start/language_bindings
+ 1.0
+
https://mqlang.org/book/start/example
1.0
diff --git a/docs/books/src/start/language_bindings.md b/docs/books/src/start/language_bindings.md
new file mode 100644
index 000000000..9dcff58ac
--- /dev/null
+++ b/docs/books/src/start/language_bindings.md
@@ -0,0 +1,13 @@
+# Language Bindings
+
+mq provides official language bindings for several programming languages, allowing you to integrate mq's Markdown processing capabilities directly into your applications.
+
+## Available Bindings
+
+| Language | Repository |
+|----------|-----------|
+| Elixir | [mq_elixir](https://github.com/harehare/mq_elixir) |
+| Python | [mq-python](https://github.com/harehare/mq-python) |
+| Ruby | [mq-ruby](https://github.com/harehare/mq-ruby) |
+| Java | [mq-java](https://github.com/harehare/mq-java) |
+| Go | [mq-go](https://github.com/harehare/mq-go) |