Skip to content

Commit 965171c

Browse files
authored
Add SingleStore MCP server (#194)
Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent d974248 commit 965171c

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.singlestore-mcp-uvx",
4+
"name": "SingleStore (uvx)",
5+
"alias": "singlestore",
6+
"description": "Interact with the SingleStore Management API and services through natural language - run SQL, manage workspaces, schedule jobs, and work with notebooks and stage files. Runs locally via uvx.",
7+
"logo": "https://avatars.githubusercontent.com/u/79943160?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"database"
11+
],
12+
"tags": [
13+
"singlestore",
14+
"database",
15+
"sql",
16+
"analytics",
17+
"data"
18+
],
19+
"transport": {
20+
"type": "stdio",
21+
"command": "uvx",
22+
"args": [
23+
"singlestore-mcp-server",
24+
"start"
25+
],
26+
"env": {
27+
"MCP_API_KEY": "${input:MCP_API_KEY}"
28+
},
29+
"metadata": {
30+
"inputs": [
31+
{
32+
"id": "MCP_API_KEY",
33+
"label": "SingleStore API Key",
34+
"description": "SingleStore Management API key. Setting this enables API-key authentication and skips the browser OAuth flow (required for headless/container use, optional locally where browser OAuth is the default). Create one in the SingleStore Cloud Portal under Configuration > API keys.",
35+
"type": "text",
36+
"required": true,
37+
"secret": true,
38+
"placeholder": "************************************",
39+
"obtain": {
40+
"url": "https://portal.singlestore.com/",
41+
"instructions": "1. Log in to the SingleStore Cloud Portal\n2. Select your organization in the navigation pane\n3. Go to Configuration > API keys > Active Keys\n4. Click 'Create API key'\n5. Specify a name and expiration date, then click 'Create'\n6. Copy the API key (it is shown only once)",
42+
"button_label": "Create API Key"
43+
}
44+
}
45+
]
46+
}
47+
},
48+
"auth": {
49+
"type": "api_key",
50+
"instructions": "Create a Management API key in the SingleStore Cloud Portal under Configuration > API keys and set it as MCP_API_KEY. Without it, the server falls back to interactive browser OAuth on start."
51+
},
52+
"contributor": {
53+
"name": "SingleStore",
54+
"github": "singlestore-labs",
55+
"url": "https://www.singlestore.com"
56+
},
57+
"links": {
58+
"repository": "https://github.com/singlestore-labs/mcp-server-singlestore",
59+
"homepage": "https://www.singlestore.com",
60+
"documentation": "https://docs.singlestore.com/cloud/ai/singlestore-mcp-server/"
61+
},
62+
"platforms": [
63+
"all"
64+
],
65+
"capabilities": {
66+
"tools": true,
67+
"resources": false,
68+
"prompts": false,
69+
"read_only_mode": false
70+
},
71+
"changelog_url": "https://github.com/singlestore-labs/mcp-server-singlestore/releases"
72+
}

0 commit comments

Comments
 (0)