Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions servers/com.square-mcp-http.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.square-mcp-http",
"name": "Square (HTTP)",
"alias": "square-http",
"description": "Interact with Square APIs via the hosted remote MCP server. Connects with OAuth for secure access to payments, orders, and more.",
"icon": "https://avatars.githubusercontent.com/u/82592?v=4",
"schema_version": "2.1",
"categories": [
"developer-tools",
"cloud"
],
"tags": [
"square",
"payments",
"commerce",
"orders",
"catalog",
"pos",
"remote"
],
"transport": {
"type": "http",
"url": "https://mcp.squareup.com/sse",
"metadata": {
"inputs": []
}
},
"auth": {
"type": "oauth",
"instructions": "Connects via OAuth. Your MCP host will initiate the Square OAuth flow to authorize access to your seller account."
},
"contributor": {
"name": "Square",
"github": "square",
"url": "https://squareup.com"
},
"links": {
"repository": "https://github.com/square/square-mcp-server",
"homepage": "https://squareup.com",
"documentation": "https://developer.squareup.com/docs/devtools/mcp"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
}
}
74 changes: 74 additions & 0 deletions servers/com.square-mcp-npx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.square-mcp-npx",
"name": "Square (npx)",
"alias": "square",
"description": "Interact with Square APIs for payments, orders, catalog, inventory, customers, and bookings. Supports all Square API services.",
"icon": "https://avatars.githubusercontent.com/u/82592?v=4",
"schema_version": "2.1",
"categories": [
"developer-tools",
"cloud"
],
"tags": [
"square",
"payments",
"commerce",
"orders",
"catalog",
"pos"
],
"transport": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"square-mcp-server",
"start"
],
"env": {
"ACCESS_TOKEN": "${input:ACCESS_TOKEN}"
},
"metadata": {
"inputs": [
{
"id": "ACCESS_TOKEN",
"label": "Square Access Token",
"description": "Square API personal access token or sandbox access token.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "EAAAxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://developer.squareup.com/console/en/apps",
"instructions": "1. Go to developer.squareup.com and log in\n2. Navigate to Apps in the developer console\n3. Select or create an application\n4. Go to Credentials\n5. Copy your access token",
"button_label": "Get Access Token"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Get a Square access token at https://developer.squareup.com/apps"
},
"contributor": {
"name": "Square",
"github": "square",
"url": "https://squareup.com"
},
"links": {
"repository": "https://github.com/square/square-mcp-server",
"homepage": "https://squareup.com",
"documentation": "https://developer.squareup.com/docs/devtools/mcp"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
}
}