@moonbanking/mcp-server 1.5.1 → 1.7.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -4,7 +4,7 @@ Moon Banking is a global directory of consumer and business banks with structure
4
4
 
5
5
  Once connected, you can ask questions like *"which crypto-friendly banks operate in Brazil?"*, *"compare digital-experience scores for the top US challenger banks"*, or *"summarize recent user stories about fees at HSBC UK"* and get tool-grounded, citable answers backed by the same data that powers [moonbanking.com](https://moonbanking.com).
6
6
 
7
- The server is generated from the public [OpenAPI specification](https://github.com/moonbanking/moonbanking-openapi) and ships as both a hosted OAuth endpoint at `https://mcp.moonbanking.com/mcp` and a stdio npm package (`@moonbanking/mcp-server`) — so you can connect it to Claude, Cursor, Grok, ChatGPT, VS Code, Windsurf, Zed, and any other [Model Context Protocol](https://modelcontextprotocol.io) client.
7
+ The server is generated from the public [OpenAPI specification](https://github.com/moonbanking/moonbanking-openapi) and ships as both a hosted OAuth endpoint at `https://mcp.moonbanking.com/mcp` and a stdio npm package (`@moonbanking/mcp-server`) — so you can connect it to Claude, Cursor, Grok, ChatGPT, VS Code, Devin Desktop (formerly Windsurf), Zed, and any other [Model Context Protocol](https://modelcontextprotocol.io) client.
8
8
 
9
9
  ## Client-specific setup guides
10
10
 
@@ -15,7 +15,7 @@ If you just want to wire Moon Banking up to a specific client, jump straight to
15
15
  | Claude (Desktop & web) | [claude](./claude.md) |
16
16
  | Claude Code | [claude-code](./claude-code.md) |
17
17
  | Cursor | [cursor](./cursor.md) |
18
- | Windsurf | [windsurf](./windsurf.md) |
18
+ | Devin Desktop (formerly Windsurf) | [devin-desktop](./devin-desktop.md) |
19
19
  | VS Code (GitHub Copilot) | [vscode](./vscode.md) |
20
20
  | Zed | [zed](./zed.md) |
21
21
  | ChatGPT | [chatgpt](./chatgpt.md) |
@@ -113,12 +113,23 @@ npx @moonbanking/mcp-server --tool=tool1 --tool=tool2
113
113
  - `bank_getById`: This endpoint allows you to retrieve a specific bank by providing the bank ID. You can include related data like scores and country information in the response.
114
114
  - `bank_semanticSearch`: Search for banks by describing what you are looking for in natural language. This searches across bank descriptions including services offered, history, location, unique features, and institution type. Use this when the user asks about banks with specific characteristics, services, or qualities.
115
115
  - `bankVote_get`: This endpoint allows you to retrieve a paginated list of bank votes. You can filter by bank ID, category, country, vote type (upvote or downvote), and other parameters.
116
+ - `bankProduct_list`: This endpoint allows you to retrieve a paginated list of published bank products across all banks, so you can compare rates and terms between institutions. Filter by bank, country, category, type, currency, and rate, and sort by rate to find the most competitive offers. Products are supplied and maintained by each bank's own verified representatives. Every product includes the name of the bank that offers it.
117
+ - `bankProduct_listByBank`: This endpoint allows you to retrieve the products and services a bank publishes on its Moon Banking profile, such as deposit accounts, loans, and credit cards. Products are supplied and maintained by the bank's own verified representatives. Only published products are returned; drafts, archived entries, and anything removed by the Moon Banking team are excluded.
118
+ - `bankProduct_create`: This endpoint allows a bank's verified representatives to add a product to the bank's profile. Products default to published and appear on the bank's public page immediately. Pass `status` as `DRAFT` to stage a product without publishing it. You must be an approved representative of the bank.
119
+ - `bankProduct_listForOwnedBank`: This endpoint allows a bank's verified representatives to retrieve every product on the bank's profile, including drafts and archived entries that the public list omits. Use it to reconcile your own catalog against Moon Banking before syncing changes. You must be an approved representative of the bank.
120
+ - `bankProduct_update`: This endpoint allows a bank's verified representatives to replace a product's details. Every writable field is overwritten, so send the product's full state rather than only the fields that changed. This is the endpoint to call when rates or fees move. You must be an approved representative of the bank.
121
+ - `bankProduct_delete`: This endpoint allows a bank's verified representatives to permanently remove a product from the bank's profile. This cannot be undone. To retire a product while keeping its record, set its status to `ARCHIVED` instead. You must be an approved representative of the bank.
122
+ - `bankProduct_setStatus`: This endpoint allows a bank's verified representatives to move a product between draft, published, and archived without resubmitting its details. Archiving is the reversible way to retire a product you may bring back; deleting is permanent. You must be an approved representative of the bank.
116
123
  - `country_get`: This endpoint allows you to retrieve a paginated list of all countries. By default, a maximum of ten countries are shown per page. You can search countries by name or 2-letter code, sort them by various fields, and include related data like scores.
117
124
  - `country_getByCountryCode`: This endpoint allows you to retrieve a specific country by providing the 2-letter ISO country code. You can include related data like scores in the response.
118
125
  - `story_get`: This endpoint allows you to retrieve a paginated list of all stories. By default, a maximum of ten stories are shown per page. You can search stories by text content, filter by bank ID, sort them by various fields, and include related data like bank and country information.
119
126
  - `story_getById`: This endpoint allows you to retrieve a specific story by providing the story ID. You can include related data like bank and country information in the response.
120
127
  - `world_getOverview`: This endpoint allows you to retrieve global overview data that aggregates banks votes, stories and other data across all banks in all countries. You can include related data like scores in the response.
121
- - `search_get`: Search across banks, countries, and stories. You can specify which entities to search using the include parameter. If no include value is provided, all entities will be searched.
128
+ - `market_get`: This endpoint allows you to retrieve a paginated list of markets (e.g. stock exchanges). You can search by name or code, filter by exact code, country, or market type, and sort the results.
129
+ - `market_getById`: This endpoint allows you to retrieve a specific market (e.g. stock exchange) by providing the market id.
130
+ - `stock_get`: This endpoint allows you to retrieve a paginated list of stock listings. You can search by ticker symbol, filter by exact symbol, market, bank, or primary-listing status, and sort the results.
131
+ - `stock_getById`: This endpoint allows you to retrieve a specific stock listing by providing the stock id. You can optionally include the associated `market` and/or `bank` as nested objects.
132
+ - `search_get`: Search across banks, countries, stories, and stocks. You can specify which entities to search using the include parameter. If no include value is provided, all entities will be searched. Banks are also matched on the ticker symbol of their stock listings, so searching `BAC` returns Bank of America.
122
133
 
123
134
  ## License
124
135
 
package/chatgpt.md CHANGED
@@ -73,11 +73,22 @@ The Moon Banking MCP server exposes the following tools (identical across every
73
73
  - `bank_getById`
74
74
  - `bank_semanticSearch`
75
75
  - `bankVote_get`
76
+ - `bankProduct_list`
77
+ - `bankProduct_listByBank`
78
+ - `bankProduct_create`
79
+ - `bankProduct_listForOwnedBank`
80
+ - `bankProduct_update`
81
+ - `bankProduct_delete`
82
+ - `bankProduct_setStatus`
76
83
  - `country_get`
77
84
  - `country_getByCountryCode`
78
85
  - `story_get`
79
86
  - `story_getById`
80
87
  - `world_getOverview`
88
+ - `market_get`
89
+ - `market_getById`
90
+ - `stock_get`
91
+ - `stock_getById`
81
92
  - `search_get`
82
93
 
83
94
  Full descriptions live on the [main MCP page](./README.md).
package/claude-code.md CHANGED
@@ -64,11 +64,22 @@ The Moon Banking MCP server exposes the following tools (identical across every
64
64
  - `bank_getById`
65
65
  - `bank_semanticSearch`
66
66
  - `bankVote_get`
67
+ - `bankProduct_list`
68
+ - `bankProduct_listByBank`
69
+ - `bankProduct_create`
70
+ - `bankProduct_listForOwnedBank`
71
+ - `bankProduct_update`
72
+ - `bankProduct_delete`
73
+ - `bankProduct_setStatus`
67
74
  - `country_get`
68
75
  - `country_getByCountryCode`
69
76
  - `story_get`
70
77
  - `story_getById`
71
78
  - `world_getOverview`
79
+ - `market_get`
80
+ - `market_getById`
81
+ - `stock_get`
82
+ - `stock_getById`
72
83
  - `search_get`
73
84
 
74
85
  Full descriptions live on the [main MCP page](./README.md).
package/claude.md CHANGED
@@ -85,11 +85,22 @@ The Moon Banking MCP server exposes the following tools (identical across every
85
85
  - `bank_getById`
86
86
  - `bank_semanticSearch`
87
87
  - `bankVote_get`
88
+ - `bankProduct_list`
89
+ - `bankProduct_listByBank`
90
+ - `bankProduct_create`
91
+ - `bankProduct_listForOwnedBank`
92
+ - `bankProduct_update`
93
+ - `bankProduct_delete`
94
+ - `bankProduct_setStatus`
88
95
  - `country_get`
89
96
  - `country_getByCountryCode`
90
97
  - `story_get`
91
98
  - `story_getById`
92
99
  - `world_getOverview`
100
+ - `market_get`
101
+ - `market_getById`
102
+ - `stock_get`
103
+ - `stock_getById`
93
104
  - `search_get`
94
105
 
95
106
  Full descriptions live on the [main MCP page](./README.md).
package/cursor.md CHANGED
@@ -76,11 +76,22 @@ The Moon Banking MCP server exposes the following tools (identical across every
76
76
  - `bank_getById`
77
77
  - `bank_semanticSearch`
78
78
  - `bankVote_get`
79
+ - `bankProduct_list`
80
+ - `bankProduct_listByBank`
81
+ - `bankProduct_create`
82
+ - `bankProduct_listForOwnedBank`
83
+ - `bankProduct_update`
84
+ - `bankProduct_delete`
85
+ - `bankProduct_setStatus`
79
86
  - `country_get`
80
87
  - `country_getByCountryCode`
81
88
  - `story_get`
82
89
  - `story_getById`
83
90
  - `world_getOverview`
91
+ - `market_get`
92
+ - `market_getById`
93
+ - `stock_get`
94
+ - `stock_getById`
84
95
  - `search_get`
85
96
 
86
97
  Full descriptions live on the [main MCP page](./README.md).
@@ -0,0 +1,85 @@
1
+ # Moon Banking MCP for Devin Desktop
2
+
3
+ > Connect Devin Desktop (formerly Windsurf) to the Moon Banking MCP server.
4
+
5
+ Devin Desktop is the new name for Windsurf. Cognition shipped the rename as an over-the-air update on June 2, 2026 — the IDE, your settings, your extensions, and your existing MCP configuration all carried over automatically. The Agent Command Center is now the default surface (multi-agent Kanban view, Spaces, ACP-based third-party agents), with the classic editor still one click away. The local coding agent has been renamed from **Cascade** to **Devin Local** — same MCP plumbing, ~30% better token efficiency, subagent support, and sandboxing. Cascade itself is end-of-life on July 1, 2026, so new MCP setup should target Devin Local; the configuration below works for both.
6
+
7
+ Devin Local is built for long-running, multi-file agentic coding tasks — exactly where having reliable external data matters. Wire in the Moon Banking MCP and Devin Local gains live access to the entire Moon Banking dataset (banks, countries, community-rated scores across 14 categories, votes, user stories), so when your agent needs to know about a real bank — its hostname, country rank, crypto-friendliness score, or what users say about its fees — it asks instead of guessing.
8
+
9
+ Useful for building banking-aware features, generating realistic test fixtures across an entire repo, or simply prompting *"find a crypto-friendly digital bank in Portugal and scaffold a project that integrates with its public services"* while Devin Local does the heavy lifting.
10
+
11
+ Devin Desktop reads MCP servers from a single global `mcp_config.json` file shared with the legacy Windsurf install. Both remote (HTTP) and stdio transports work, and the same file is picked up by Devin Local *and* Cascade (until Cascade's July 1, 2026 sunset).
12
+
13
+ ## Recommended: hosted (OAuth)
14
+
15
+ Edit (or create) the global config at `~/.codeium/mcp_config.json`:
16
+
17
+ ```json
18
+ {
19
+ "mcpServers": {
20
+ "moonbanking": {
21
+ "serverUrl": "https://mcp.moonbanking.com/mcp"
22
+ }
23
+ }
24
+ }
25
+ ```
26
+
27
+ Restart Devin Desktop. The first request to a Moon Banking tool will trigger an OAuth flow in your browser. After approval, the tools become available to Devin Local (and to Cascade, while it remains).
28
+
29
+ ## Alternative: self-hosted (API key)
30
+
31
+ ```json
32
+ {
33
+ "mcpServers": {
34
+ "moonbanking-mcp": {
35
+ "command": "npx",
36
+ "args": ["-y", "@moonbanking/mcp-server"],
37
+ "env": {
38
+ "MOON_BANKING_API_KEY": "Bearer mb_sk_..."
39
+ }
40
+ }
41
+ }
42
+ }
43
+ ```
44
+
45
+ ## Verify the connection
46
+
47
+ Open Devin Desktop, switch to the **Devin Local** agent (or Cascade, if you have not migrated yet), and head to **Settings → Tools** — `moonbanking` should appear with its tool count. Then ask:
48
+
49
+ > List the top five banks in Japan by user rating.
50
+
51
+ ## Troubleshooting
52
+
53
+ - **Server not detected.** Confirm Devin Desktop is reading the right config file: open **Settings → Tools** and use **View Raw Config** to verify the path. The file is `~/.codeium/mcp_config.json` — no `windsurf/` subfolder.
54
+ - **Auth window won't open.** Some Linux distributions require a default browser to be configured (`xdg-settings set default-web-browser ...`).
55
+ - **Still on legacy Windsurf 2.0?** The same `~/.codeium/mcp_config.json` works — Cascade reads it directly, and Devin Desktop will pick it up automatically when the OTA update lands.
56
+
57
+
58
+ ## Available tools
59
+
60
+ The Moon Banking MCP server exposes the following tools (identical across every client):
61
+
62
+ - `bank_getByHostname`
63
+ - `bank_get`
64
+ - `bank_getById`
65
+ - `bank_semanticSearch`
66
+ - `bankVote_get`
67
+ - `bankProduct_list`
68
+ - `bankProduct_listByBank`
69
+ - `bankProduct_create`
70
+ - `bankProduct_listForOwnedBank`
71
+ - `bankProduct_update`
72
+ - `bankProduct_delete`
73
+ - `bankProduct_setStatus`
74
+ - `country_get`
75
+ - `country_getByCountryCode`
76
+ - `story_get`
77
+ - `story_getById`
78
+ - `world_getOverview`
79
+ - `market_get`
80
+ - `market_getById`
81
+ - `stock_get`
82
+ - `stock_getById`
83
+ - `search_get`
84
+
85
+ Full descriptions live on the [main MCP page](./README.md).