-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathserver.json
More file actions
85 lines (85 loc) · 2.58 KB
/
server.json
File metadata and controls
85 lines (85 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
"name": "app.thoughtspot/mcp-server",
"description": "MCP Server for ThoughtSpot - provides OAuth authentication and tools for querying data",
"status": "active",
"repository": {
"url": "https://github.com/thoughtspot/mcp-server",
"source": "github"
},
"version": "2.0.0",
"remotes": [{
"type": "streamable-http",
"url": "https://agent.thoughtspot.app/mcp"
}, {
"type": "sse",
"url": "https://agent.thoughtspot.app/sse"
}, {
"type": "streamable-http",
"url": "https://agent.thoughtspot.app/bearer/mcp",
"headers": [
{
"name": "Authorization",
"description": "Bearer token for authentication, have the ts-host as 'token@ts-host' or as a separate 'x-ts-host' header",
"is_required": true,
"is_secret": true
},
{
"name": "X-TS-Host",
"description": "ThoughtSpot instance URL, if not provided in the authorization header",
"is_required": false,
"is_secret": false
}
]
}, {
"type": "sse",
"url": "https://agent.thoughtspot.app/bearer/sse",
"headers": [
{
"name": "Authorization",
"description": "Bearer token for authentication, have the ts-host as 'token@ts-host' or as a separate 'x-ts-host' header",
"is_required": true,
"is_secret": true
},
{
"name": "X-TS-Host",
"description": "ThoughtSpot instance URL, if not provided in the authorization header",
"is_required": false,
"is_secret": false
}
]
}],
"capabilities": {
"tools": [
{
"name": "ping",
"description": "Test connectivity and authentication"
},
{
"name": "getRelevantQuestions",
"description": "Get relevant data questions from ThoughtSpot analytics based on a user query"
},
{
"name": "getAnswer",
"description": "Get the answer to a specific question from ThoughtSpot analytics"
},
{
"name": "createLiveboard",
"description": "Create a liveboard from a list of answers"
},
{
"name": "getDataSourceSuggestions",
"description": "Get datasource suggestions for a given query"
}
],
"resources": [
{
"name": "datasources",
"description": "List of ThoughtSpot Data models the user has access to"
}
]
},
"documentation": {
"url": "https://github.com/thoughtspot/mcp-server#readme"
}
}