Skip to content

Commit a6e5e0a

Browse files
committed
chore: update .gitignore to include mcpregistry tokens and add server.json configuration file for TagoIO model context protocol server
1 parent d72295f commit a6e5e0a

2 files changed

Lines changed: 41 additions & 1 deletion

File tree

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,8 @@ yarn.lock
5454
*.lock
5555

5656
# ignore .cursor
57-
.cursor
57+
.cursor
58+
59+
# ignore mcpregistry tokens
60+
.mcpregistry_github_token
61+
.mcpregistry_registry_token

server.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
3+
"name": "io.github.tago-io/mcp-server",
4+
"description": "Model Context Protocol server for TagoIO data and analytics",
5+
"repository": {
6+
"url": "https://github.com/tago-io/mcp-server",
7+
"source": "github"
8+
},
9+
"version": "1.0.0",
10+
"packages": [
11+
{
12+
"registryType": "npm",
13+
"identifier": "@tago-io/mcp-server",
14+
"version": "1.0.0",
15+
"transport": {
16+
"type": "stdio"
17+
},
18+
"environmentVariables": [
19+
{
20+
"description": "Your TagoIO Profile Token or Analysis Token",
21+
"isRequired": true,
22+
"format": "string",
23+
"isSecret": true,
24+
"name": "TAGOIO_TOKEN"
25+
},
26+
{
27+
"description": "Your API endpoint for the TagoIO. Defaults to https://api.us-e1.tago.io",
28+
"isRequired": false,
29+
"format": "string",
30+
"isSecret": false,
31+
"name": "TAGOIO_API"
32+
}
33+
]
34+
}
35+
]
36+
}

0 commit comments

Comments
 (0)