nomba-mcp 1.1.0 → 1.1.1

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.
Files changed (2) hide show
  1. package/README.md +14 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # @nomba-inc/mcp-server
1
+ # nomba-mcp
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/@nomba-inc/mcp-server.svg)](https://www.npmjs.com/package/@nomba-inc/mcp-server)
3
+ [![npm version](https://img.shields.io/npm/v/nomba-mcp.svg)](https://www.npmjs.com/package/nomba-mcp)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
 
6
6
  An MCP (Model Context Protocol) server for the [Nomba API](https://developer.nomba.com). Connect any MCP-compatible AI assistant to your Nomba business account to check balances, send money, generate payment links, manage virtual accounts, buy airtime, pay utility bills, and more.
@@ -51,6 +51,12 @@ Authentication is handled automatically. The server obtains an OAuth2 access tok
51
51
 
52
52
  ### Using npx (recommended)
53
53
 
54
+ ```bash
55
+ npx nomba-mcp
56
+ ```
57
+
58
+ Also available as `@nomba-inc/mcp-server`:
59
+
54
60
  ```bash
55
61
  npx @nomba-inc/mcp-server
56
62
  ```
@@ -58,7 +64,7 @@ npx @nomba-inc/mcp-server
58
64
  ### Global install
59
65
 
60
66
  ```bash
61
- npm install -g @nomba-inc/mcp-server
67
+ npm install -g nomba-mcp
62
68
  ```
63
69
 
64
70
  ### Build from source
@@ -95,7 +101,7 @@ Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_
95
101
  "mcpServers": {
96
102
  "nomba": {
97
103
  "command": "npx",
98
- "args": ["-y", "@nomba-inc/mcp-server"],
104
+ "args": ["-y", "nomba-mcp"],
99
105
  "env": {
100
106
  "NOMBA_CLIENT_ID": "your_client_id",
101
107
  "NOMBA_CLIENT_SECRET": "your_client_secret",
@@ -115,7 +121,7 @@ Add to your project's `.mcp.json`:
115
121
  "mcpServers": {
116
122
  "nomba": {
117
123
  "command": "npx",
118
- "args": ["-y", "@nomba-inc/mcp-server"],
124
+ "args": ["-y", "nomba-mcp"],
119
125
  "env": {
120
126
  "NOMBA_CLIENT_ID": "your_client_id",
121
127
  "NOMBA_CLIENT_SECRET": "your_client_secret",
@@ -134,7 +140,7 @@ Add to your MCP settings (Settings > MCP Servers):
134
140
  {
135
141
  "nomba": {
136
142
  "command": "npx",
137
- "args": ["-y", "@nomba-inc/mcp-server"],
143
+ "args": ["-y", "nomba-mcp"],
138
144
  "env": {
139
145
  "NOMBA_CLIENT_ID": "your_client_id",
140
146
  "NOMBA_CLIENT_SECRET": "your_client_secret",
@@ -149,7 +155,7 @@ Add to your MCP settings (Settings > MCP Servers):
149
155
  Set the environment variables and run:
150
156
 
151
157
  ```bash
152
- NOMBA_CLIENT_ID=your_id NOMBA_CLIENT_SECRET=your_secret NOMBA_ACCOUNT_ID=your_account npx @nomba-inc/mcp-server
158
+ NOMBA_CLIENT_ID=your_id NOMBA_CLIENT_SECRET=your_secret NOMBA_ACCOUNT_ID=your_account npx nomba-mcp
153
159
  ```
154
160
 
155
161
  The server communicates over stdio using the standard MCP transport, so it works with any client that supports the MCP protocol.
@@ -397,7 +403,7 @@ The server defaults to sandbox (`https://sandbox.nomba.com`). To use production,
397
403
  ### Tools not appearing
398
404
 
399
405
  - Restart your MCP client after updating config
400
- - Verify your config uses `"command": "npx"` with `"args": ["-y", "@nomba-inc/mcp-server"]`
406
+ - Verify your config uses `"command": "npx"` with `"args": ["-y", "nomba-mcp"]`
401
407
 
402
408
  ## License
403
409
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nomba-mcp",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "MCP server for the Nomba banking/payments API",
5
5
  "type": "module",
6
6
  "license": "MIT",