Skip to content

Commit ad985f7

Browse files
amineelkouhenAmine El Kouhen
andauthored
Adding CockroachDB MCP Server to registry (#78)
* Adding CockroachDB MCP Server * update port literal --------- Co-authored-by: Amine El Kouhen <[email protected]>
1 parent 8a73c30 commit ad985f7

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed

servers/cockroachdb/server.yaml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: cockroachdb
2+
image: mcp/cockroachdb
3+
type: server
4+
meta:
5+
category: database
6+
tags:
7+
- cockroachdb
8+
- database
9+
about:
10+
title: CockroachDB
11+
description: Enable AI agents to manage, monitor, and query CockroachDB using natural language. Perform complex database operations, cluster management, and query execution seamlessly through AI-driven workflows. Integrate effortlessly with MCP clients for scalable and high-performance data operations.
12+
icon: https://avatars.githubusercontent.com/u/6748139?v=4
13+
source:
14+
project: https://github.com/amineelkouhen/mcp-cockroachdb
15+
config:
16+
description: Configure the connection to CockroachDB
17+
secrets:
18+
- name: cockroachdb.password
19+
env: CRDB_PWD
20+
env:
21+
- name: CRDB_HOST
22+
example: 127.0.0.1
23+
value: '{{cockroachdb.host}}'
24+
- name: CRDB_PORT
25+
example: "26257"
26+
value: '{{cockroachdb.port}}'
27+
- name: CRDB_DATABASE
28+
example: defaultdb
29+
value: '{{cockroachdb.database}}'
30+
- name: CRDB_USERNAME
31+
example: root
32+
value: '{{cockroachdb.username}}'
33+
- name: CRDB_SSL_MODE
34+
example: "disable"
35+
value: '{{cockroachdb.ssl_mode}}'
36+
- name: CRDB_SSL_CA_PATH
37+
example: ""
38+
value: '{{cockroachdb.ca_path}}'
39+
- name: CRDB_SSL_KEYFILE
40+
example: ""
41+
value: '{{cockroachdb.ssl_keyfile}}'
42+
- name: CRDB_SSL_CERTFILE
43+
example: ""
44+
value: '{{cockroachdb.ssl_certfile}}'
45+
parameters:
46+
type: object
47+
properties:
48+
host:
49+
type: string
50+
port:
51+
type: integer
52+
database:
53+
type: string
54+
username:
55+
type: string
56+
ssl_mode:
57+
type: string
58+
ca_path:
59+
type: string
60+
ssl_keyfile:
61+
type: string
62+
ssl_certfile:
63+
type: string

0 commit comments

Comments
 (0)