capsulemcp 2.1.0 → 2.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.
package/README.md CHANGED
@@ -48,7 +48,7 @@ For most individual users the install is a single JSON snippet pasted into Claud
48
48
 
49
49
  3. Restart Claude Desktop. The Capsule tools appear in the tool picker.
50
50
 
51
- That's it. The first launch fetches the package from npm (a few seconds); subsequent launches are instant from the npx cache. To pin a specific version, use `"capsulemcp@2.1.0"` in `args`. If you're tracking a fork or an unreleased branch, use the GitHub-ref form instead: `"github:soil-dev/capsulemcp#v2.1.0"` — same arguments, just installs from a git clone rather than the npm registry. See [INSTALL.md](INSTALL.md) for the Claude Code path, manual install, and troubleshooting.
51
+ That's it. The first launch fetches the package from npm (a few seconds); subsequent launches are instant from the npx cache. To pin a specific version, use `"capsulemcp@2.1.1"` in `args`. If you're tracking a fork or an unreleased branch, use the GitHub-ref form instead: `"github:soil-dev/capsulemcp#v2.1.1"` — same arguments, just installs from a git clone rather than the npm registry. See [INSTALL.md](INSTALL.md) for the Claude Code path, manual install, and troubleshooting.
52
52
 
53
53
  ## Tools
54
54
 
package/dist/http.js CHANGED
@@ -3275,7 +3275,7 @@ var uploadAttachmentSchema = z23.object({
3275
3275
  "MIME type of the file (e.g. 'application/pdf', 'image/png', 'text/plain'). Trusted by Capsule verbatim; not cross-checked against `filename` or the actual bytes."
3276
3276
  ),
3277
3277
  dataBase64: z23.string().min(1).max(HARD_MAX_BASE64_CHARS).describe(
3278
- "File contents, base64-encoded. Decoded server-side and uploaded as the request body. Maximum 25 MB per attachment (Capsule's documented limit); the connector rejects oversized base64 before uploading. The inbound HTTP body limit is ~35 MB which leaves room for the base64 expansion of a 25 MB binary."
3278
+ "File contents, base64-encoded. Decoded server-side and uploaded as the request body. PRACTICAL LIMIT: the base64 must be produced inline as tool-call output, so uploads driven by an LLM are only viable for small files (a few tens of KB) \u2014 a 500 KB file is ~660K characters, far beyond a chat model's output budget. Do not attempt to inline large files; tell the user the file is too large to route through the model. The 25 MB maximum (Capsule's documented limit) applies to programmatic MCP clients that construct the call directly; the connector rejects oversized base64 before uploading."
3279
3279
  ),
3280
3280
  content: z23.string().optional().describe(
3281
3281
  "Body text for the note that will hold the attachment. Defaults to '[attachment]' if omitted."
@@ -3363,7 +3363,7 @@ function createCapsuleMcpServer(opts) {
3363
3363
  const server = new McpServer(
3364
3364
  {
3365
3365
  name: "capsulemcp",
3366
- version: "2.1.0",
3366
+ version: "2.1.1",
3367
3367
  description: "Read and (optionally) modify Capsule CRM data \u2014 parties, opportunities, projects, tasks, timeline entries, pipelines, tags.",
3368
3368
  websiteUrl: "https://github.com/soil-dev/capsulemcp",
3369
3369
  icons: ICONS
package/dist/index.js CHANGED
@@ -2772,7 +2772,7 @@ var uploadAttachmentSchema = z22.object({
2772
2772
  "MIME type of the file (e.g. 'application/pdf', 'image/png', 'text/plain'). Trusted by Capsule verbatim; not cross-checked against `filename` or the actual bytes."
2773
2773
  ),
2774
2774
  dataBase64: z22.string().min(1).max(HARD_MAX_BASE64_CHARS).describe(
2775
- "File contents, base64-encoded. Decoded server-side and uploaded as the request body. Maximum 25 MB per attachment (Capsule's documented limit); the connector rejects oversized base64 before uploading. The inbound HTTP body limit is ~35 MB which leaves room for the base64 expansion of a 25 MB binary."
2775
+ "File contents, base64-encoded. Decoded server-side and uploaded as the request body. PRACTICAL LIMIT: the base64 must be produced inline as tool-call output, so uploads driven by an LLM are only viable for small files (a few tens of KB) \u2014 a 500 KB file is ~660K characters, far beyond a chat model's output budget. Do not attempt to inline large files; tell the user the file is too large to route through the model. The 25 MB maximum (Capsule's documented limit) applies to programmatic MCP clients that construct the call directly; the connector rejects oversized base64 before uploading."
2776
2776
  ),
2777
2777
  content: z22.string().optional().describe(
2778
2778
  "Body text for the note that will hold the attachment. Defaults to '[attachment]' if omitted."
@@ -2860,7 +2860,7 @@ function createCapsuleMcpServer(opts) {
2860
2860
  const server2 = new McpServer(
2861
2861
  {
2862
2862
  name: "capsulemcp",
2863
- version: "2.1.0",
2863
+ version: "2.1.1",
2864
2864
  description: "Read and (optionally) modify Capsule CRM data \u2014 parties, opportunities, projects, tasks, timeline entries, pipelines, tags.",
2865
2865
  websiteUrl: "https://github.com/soil-dev/capsulemcp",
2866
2866
  icons: ICONS
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capsulemcp",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Model Context Protocol server for Capsule CRM. Lets Claude (Desktop, Code, or web Projects via Custom Connector) read and write your CRM in plain English. Covers contacts, opportunities, projects, tasks, timeline activity, structured filters, saved filters with sort, workflow tracks, file attachments, audit, and batch fetches.",
5
5
  "keywords": [
6
6
  "mcp",