Skip to content

Commit 0a4d2f2

Browse files
authored
Add Brex MCP server (#258)
Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent ee298ab commit 0a4d2f2

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "dennisonbertram.brex-mcp-npx",
4+
"name": "Brex (npx)",
5+
"alias": "brex",
6+
"description": "Connect to the Brex API to query accounts, transactions, expenses, budgets, spend limits, and statements, plus write operations like uploading and matching receipts. Runs locally via npx.",
7+
"logo": "https://avatars.githubusercontent.com/u/228482372?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools"
11+
],
12+
"tags": [
13+
"brex",
14+
"finance",
15+
"expenses",
16+
"transactions",
17+
"budgets",
18+
"accounting"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "npx",
23+
"args": [
24+
"-y",
25+
"mcp-brex"
26+
],
27+
"env": {
28+
"BREX_API_KEY": "${input:BREX_API_KEY}"
29+
},
30+
"metadata": {
31+
"inputs": [
32+
{
33+
"id": "BREX_API_KEY",
34+
"label": "Brex API Token",
35+
"description": "Developer API token from your Brex dashboard, used to authenticate against the Brex API.",
36+
"type": "text",
37+
"required": true,
38+
"secret": true,
39+
"placeholder": "************************************",
40+
"obtain": {
41+
"url": "https://dashboard.brex.com/",
42+
"instructions": "1. Sign in to the Brex dashboard\n2. Open Settings > Developer (Developer API)\n3. Create a new API token\n4. Copy the generated token",
43+
"button_label": "Open Brex Dashboard"
44+
}
45+
}
46+
]
47+
}
48+
},
49+
"auth": {
50+
"type": "api_key",
51+
"instructions": "Create a developer API token in the Brex dashboard under Settings > Developer and provide it as BREX_API_KEY."
52+
},
53+
"contributor": {
54+
"name": "dennisonbertram",
55+
"github": "dennisonbertram",
56+
"url": "https://github.com/dennisonbertram/mcp-brex"
57+
},
58+
"links": {
59+
"repository": "https://github.com/dennisonbertram/mcp-brex",
60+
"homepage": "https://github.com/dennisonbertram/mcp-brex"
61+
},
62+
"platforms": [
63+
"all"
64+
],
65+
"capabilities": {
66+
"tools": true,
67+
"resources": true,
68+
"prompts": true,
69+
"read_only_mode": false
70+
},
71+
"changelog_url": "https://github.com/dennisonbertram/mcp-brex/releases"
72+
}

0 commit comments

Comments
 (0)