Skip to content

Commit 66e59ba

Browse files
claudeits-mash
authored andcommitted
Add Square MCP server definitions (local + remote)
Official Square MCP server for payments, orders, catalog, and more. Local stdio version uses square-mcp-server npm package with access token. Remote HTTP version at mcp.squareup.com/sse uses OAuth. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit 66e59ba

2 files changed

Lines changed: 109 additions & 0 deletions

File tree

servers/com.square-mcp-http.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.square-mcp-http",
4+
"name": "Square (Remote)",
5+
"alias": "square-remote",
6+
"description": "Interact with Square APIs via the hosted remote MCP server. Connects with OAuth for secure access to payments, orders, and more.",
7+
"icon": "https://avatars.githubusercontent.com/u/82592?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["developer-tools", "cloud"],
10+
"tags": ["square", "payments", "commerce", "orders", "catalog", "pos", "remote"],
11+
12+
"transport": {
13+
"type": "http",
14+
"url": "https://mcp.squareup.com/sse",
15+
"metadata": {
16+
"inputs": []
17+
}
18+
},
19+
20+
"auth": {
21+
"type": "oauth",
22+
"instructions": "Connects via OAuth. Your MCP host will initiate the Square OAuth flow to authorize access to your seller account."
23+
},
24+
25+
"contributor": {
26+
"name": "Square",
27+
"github": "square",
28+
"url": "https://squareup.com"
29+
},
30+
31+
"links": {
32+
"repository": "https://github.com/square/square-mcp-server",
33+
"homepage": "https://squareup.com",
34+
"documentation": "https://developer.squareup.com/docs/mcp"
35+
},
36+
37+
"platforms": ["all"],
38+
39+
"capabilities": {
40+
"tools": true,
41+
"resources": false,
42+
"prompts": false,
43+
"read_only_mode": false
44+
}
45+
}

servers/com.square-mcp.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.square-mcp",
4+
"name": "Square",
5+
"alias": "square",
6+
"description": "Interact with Square APIs for payments, orders, catalog, inventory, customers, and bookings. Supports all Square API services.",
7+
"icon": "https://avatars.githubusercontent.com/u/82592?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["developer-tools", "cloud"],
10+
"tags": ["square", "payments", "commerce", "orders", "catalog", "pos"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "square-mcp-server", "start"],
16+
"env": {
17+
"ACCESS_TOKEN": "${input:ACCESS_TOKEN}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "ACCESS_TOKEN",
23+
"label": "Square Access Token",
24+
"description": "Square API personal access token or sandbox access token.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "EAAAxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://developer.squareup.com/apps",
31+
"instructions": "1. Go to developer.squareup.com/apps\n2. Select or create an application\n3. Go to the Credentials section\n4. Copy your Access Token (sandbox or production)",
32+
"button_label": "Get Access Token"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Get a Square access token at https://developer.squareup.com/apps"
42+
},
43+
44+
"contributor": {
45+
"name": "Square",
46+
"github": "square",
47+
"url": "https://squareup.com"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/square/square-mcp-server",
52+
"homepage": "https://squareup.com",
53+
"documentation": "https://developer.squareup.com/docs/mcp"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": false
63+
}
64+
}

0 commit comments

Comments
 (0)