Skip to content

Commit ca5b682

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for ACCESS_TOKEN)
1 parent 97031b8 commit ca5b682

1 file changed

Lines changed: 21 additions & 11 deletions

File tree

servers/com.square-mcp.json

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,26 @@
66
"description": "Interact with Square APIs for payments, orders, catalog, inventory, customers, and bookings. Supports all Square API services.",
77
"icon": "https://avatars.githubusercontent.com/u/82592?v=4",
88
"schema_version": "2.1",
9-
"categories": ["developer-tools", "cloud"],
10-
"tags": ["square", "payments", "commerce", "orders", "catalog", "pos"],
11-
9+
"categories": [
10+
"developer-tools",
11+
"cloud"
12+
],
13+
"tags": [
14+
"square",
15+
"payments",
16+
"commerce",
17+
"orders",
18+
"catalog",
19+
"pos"
20+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "npx",
15-
"args": ["-y", "square-mcp-server", "start"],
24+
"args": [
25+
"-y",
26+
"square-mcp-server",
27+
"start"
28+
],
1629
"env": {
1730
"ACCESS_TOKEN": "${input:ACCESS_TOKEN}"
1831
},
@@ -22,7 +35,7 @@
2235
"id": "ACCESS_TOKEN",
2336
"label": "Square Access Token",
2437
"description": "Square API personal access token or sandbox access token.",
25-
"type": "password",
38+
"type": "text",
2639
"required": true,
2740
"secret": true,
2841
"placeholder": "EAAAxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -35,26 +48,23 @@
3548
]
3649
}
3750
},
38-
3951
"auth": {
4052
"type": "api_key",
4153
"instructions": "Get a Square access token at https://developer.squareup.com/apps"
4254
},
43-
4455
"contributor": {
4556
"name": "Square",
4657
"github": "square",
4758
"url": "https://squareup.com"
4859
},
49-
5060
"links": {
5161
"repository": "https://github.com/square/square-mcp-server",
5262
"homepage": "https://squareup.com",
5363
"documentation": "https://developer.squareup.com/docs/mcp"
5464
},
55-
56-
"platforms": ["all"],
57-
65+
"platforms": [
66+
"all"
67+
],
5868
"capabilities": {
5969
"tools": true,
6070
"resources": false,

0 commit comments

Comments
 (0)