attio-mcp 1.1.9 → 1.1.10
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/CHANGELOG.md +5 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -17,10 +17,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
17
17
|
|
|
18
18
|
### Deprecated
|
|
19
19
|
|
|
20
|
-
## [1.1.
|
|
20
|
+
## [1.1.10] - 2025-10-23
|
|
21
21
|
|
|
22
22
|
### Fixed
|
|
23
23
|
|
|
24
|
+
- **Release pipeline wireit configuration** (#898) - Fixed build configuration blocking NPM releases
|
|
25
|
+
- **Problem**: `lint:tools` script used direct command instead of wireit, causing Release Pipeline validation failures
|
|
26
|
+
- **Solution**: Updated package.json to use `"lint:tools": "wireit"` as required by wireit configuration
|
|
27
|
+
- **Result**: Release Pipeline can now complete successfully and publish to NPM
|
|
24
28
|
- **Person creation now supports optional email addresses** (#895) - Removed unnecessary validation requiring `email_addresses` for person records
|
|
25
29
|
- **Problem**: MCP server enforced `email_addresses` as required when Attio API only requires `name`
|
|
26
30
|
- **Solution**: Updated `PersonCreator` to validate only `name` field (actual API requirement)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "attio-mcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
4
4
|
"description": "AI-powered access to Attio CRM. Manage contacts, companies, deals, tasks, and notes. Search records, update pipelines, and automate workflows for sales and GTM teams.",
|
|
5
5
|
"mcpName": "io.github.kesslerio/attio-mcp-server",
|
|
6
6
|
"main": "dist/smithery.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"lint:fix": "wireit",
|
|
37
37
|
"format": "npx prettier --write --config .prettierrc src/**/*.ts test/**/*.ts *.ts",
|
|
38
38
|
"check:format": "npx prettier --check --config .prettierrc src/**/*.ts test/**/*.ts *.ts",
|
|
39
|
-
"lint:tools": "
|
|
39
|
+
"lint:tools": "wireit",
|
|
40
40
|
"test": "vitest",
|
|
41
41
|
"test:watch": "vitest --watch",
|
|
42
42
|
"test:offline": "SKIP_INTEGRATION_TESTS=true vitest --config configs/vitest/vitest.config.offline.ts",
|