@sodiumhq/mcp-pm 0.1.0-beta.2596 → 0.1.0-beta.2599
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 +8 -4
- package/dist/index.js +11 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# @sodiumhq/mcp-pm
|
|
2
2
|
|
|
3
|
-
Model Context Protocol (MCP) server for [Sodium Practice Management](https://sodiumhq.com). Lets AI assistants like Claude Desktop, Claude Code, Cursor, and
|
|
3
|
+
Model Context Protocol (MCP) server for [Sodium Practice Management](https://sodiumhq.com). Lets AI assistants like Claude Desktop, Claude Code, Cursor, and VS Code interact with your Sodium tenant.
|
|
4
|
+
|
|
5
|
+
> **Full setup guide and example prompts:** [sodiumhq.com/features/mcp](https://sodiumhq.com/features/mcp)
|
|
4
6
|
|
|
5
7
|
## Status
|
|
6
8
|
|
|
@@ -8,13 +10,15 @@ Model Context Protocol (MCP) server for [Sodium Practice Management](https://sod
|
|
|
8
10
|
|
|
9
11
|
## Quick start
|
|
10
12
|
|
|
11
|
-
### 1.
|
|
13
|
+
### 1. Grab your API key and tenant code
|
|
14
|
+
|
|
15
|
+
In Sodium, open the **profile menu** (top right) and click **API Keys**. Create a new key and copy it.
|
|
12
16
|
|
|
13
|
-
|
|
17
|
+
Your **tenant code** is the subdomain in the URL you use to log in — if you sign in at `acme.sodiumhq.com`, your tenant code is `acme`.
|
|
14
18
|
|
|
15
19
|
### 2. Configure your MCP client
|
|
16
20
|
|
|
17
|
-
**Claude Desktop**
|
|
21
|
+
**Claude Desktop** — edit `~/Library/Application Support/Claude/claude_desktop_config.json` on Mac, or `%APPDATA%\Claude\claude_desktop_config.json` on Windows:
|
|
18
22
|
|
|
19
23
|
```json
|
|
20
24
|
{
|
package/dist/index.js
CHANGED
|
@@ -1197,7 +1197,17 @@ async function buildInstructions(api) {
|
|
|
1197
1197
|
]);
|
|
1198
1198
|
const now = /* @__PURE__ */ new Date();
|
|
1199
1199
|
const lines = [
|
|
1200
|
-
"You are assisting a user of Sodium Practice Management.",
|
|
1200
|
+
"You are assisting a user of Sodium Practice Management — software used by accountancy practices to run their business.",
|
|
1201
|
+
"",
|
|
1202
|
+
"IMPORTANT — who the user is and whose data this is:",
|
|
1203
|
+
"- The user is a member of an accountancy practice (accountant, bookkeeper, partner, or practice staff). They are NEVER the end client.",
|
|
1204
|
+
"- 'Clients' in this system are the businesses and individuals the practice provides services to (accounts, tax, payroll, bookkeeping, advisory, etc.).",
|
|
1205
|
+
"- When the user names an entity (e.g. 'ACME Ltd', 'Greggs Carpentry'), they are almost always referring to one of THEIR CLIENTS — not themselves or their own practice.",
|
|
1206
|
+
"- Tasks, proposals, engagement letters, services and statutory dates in this system describe work the practice does FOR clients.",
|
|
1207
|
+
"",
|
|
1208
|
+
"Always answer from the practice's point of view:",
|
|
1209
|
+
"- For prompts like 'brief me on my call with X' or 'summarise X', produce a practice-side view: what services the practice delivers to X, what work is outstanding, what the user should raise or action with the client.",
|
|
1210
|
+
"- Never frame output as if the named entity is the one being briefed — it is the practice (the user) being briefed ABOUT the client.",
|
|
1201
1211
|
"",
|
|
1202
1212
|
`Today: ${now.toISOString().slice(0, 10)} (${now.toLocaleDateString("en-GB", { weekday: "long" })})`,
|
|
1203
1213
|
`Current UTC time: ${now.toISOString()}`
|