This is an automated email from the ASF dual-hosted git repository.
FreeOnePlus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-mcp-server.git
The following commit(s) were added to refs/heads/master by this push:
new bbfd286 docs: Add one-click "Add to Kiro" install badge (#83)
bbfd286 is described below
commit bbfd286217d51acaee28ea53c162db3e9174a8d4
Author: Anil Maktala <[email protected]>
AuthorDate: Fri Jun 5 12:50:25 2026 +0530
docs: Add one-click "Add to Kiro" install badge (#83)
Co-authored-by: Anil Maktala <[email protected]>
---
README.md | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/README.md b/README.md
index e4cf430..2fbeabd 100644
--- a/README.md
+++ b/README.md
@@ -825,6 +825,29 @@ Streamable HTTP mode requires you to run the MCP server
independently first, and
After configuring either mode in Cursor, you should be able to select the
server (e.g., `doris-stdio` or `doris-http`) and use its tools.
+## Connecting with Kiro
+
+[](https://kiro.dev/launch/mcp/add?name=doris-mcp&config=%7B%22command%22%3A%22doris-mcp-server%22%2C%22args%22%3A%5B%22--transport%22%2C%22stdio%22%5D%2C%22env%22%3A%7B%22DORIS_HOST%22%3A%22127.0.0.1%22%2C%22DORIS_PORT%22%3A%229030%22%2C%22DORIS_USER%22%3A%22root%22%2C%22DORIS_PASSWORD%22%3A%22your_db_password%22%7D%7D)
+
+Or add the following to your Kiro MCP config file (`~/.kiro/settings/mcp.json`
for global, or `.kiro/settings/mcp.json` for project-scoped). See the [Kiro MCP
documentation](https://kiro.dev/docs/mcp/) for more details.
+
+```json
+{
+ "mcpServers": {
+ "doris-stdio": {
+ "command": "doris-mcp-server",
+ "args": ["--transport", "stdio"],
+ "env": {
+ "DORIS_HOST": "127.0.0.1",
+ "DORIS_PORT": "9030",
+ "DORIS_USER": "root",
+ "DORIS_PASSWORD": "your_db_password"
+ }
+ }
+ }
+}
+```
+
## Directory Structure
```
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]