@west10tech/constructionwire-mcp 1.4.0 → 2.0.0
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/LICENSE +21 -0
- package/README.md +42 -18
- package/dist/clients/constructionwire-client.d.ts +3 -4
- package/dist/clients/constructionwire-client.d.ts.map +1 -1
- package/dist/clients/constructionwire-client.js +4 -117
- package/dist/clients/constructionwire-client.js.map +1 -1
- package/dist/config.d.ts +3 -3
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +6 -7
- package/dist/config.js.map +1 -1
- package/dist/index.js +3 -4
- package/dist/index.js.map +1 -1
- package/dist/tools/constructionwire-tools.d.ts +3 -4
- package/dist/tools/constructionwire-tools.d.ts.map +1 -1
- package/dist/tools/constructionwire-tools.js +9 -9
- package/dist/tools/constructionwire-tools.js.map +1 -1
- package/package.json +4 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 West10
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -15,8 +15,8 @@ This MCP server provides 75 tools across 1 integrations:
|
|
|
15
15
|
|
|
16
16
|
### Constructionwire Tools
|
|
17
17
|
- **constructionwire_reports_list**: List Construction Projects. Returns minimal data appropriate for app search list views. To retrieve complete details, use endpoint /reports/{reportId}. Lets make sure PageSize is max 10.
|
|
18
|
-
- **constructionwire_reports_get**: Get a Construction Project. To retrieve multiple, use multiple id (e.g /reports/100?reportTypeId
|
|
19
|
-
- **constructionwire_reports_files**: List Project Files (e.g. Plans/Specs). Set keywordsIn
|
|
18
|
+
- **constructionwire_reports_get**: Get a Construction Project. To retrieve multiple, use multiple id (e.g /reports/100?reportTypeId=1&id=101&id=102).
|
|
19
|
+
- **constructionwire_reports_files**: List Project Files (e.g. Plans/Specs). Set keywordsIn=12 in query to search files (e.g. /reports?reportType=1&keywords={term}&keywordsIn=12).
|
|
20
20
|
- **constructionwire_reports_file**: Get a Project File (e.g. Plans/Specs)
|
|
21
21
|
- **constructionwire_reports_notes**: List Project Notes
|
|
22
22
|
- **constructionwire_reports_note**: Get a Project Note
|
|
@@ -29,7 +29,7 @@ This MCP server provides 75 tools across 1 integrations:
|
|
|
29
29
|
- **constructionwire_reports_task**: Get a Project Task
|
|
30
30
|
- **constructionwire_reports_facets**: List Construction Project Facets
|
|
31
31
|
- **constructionwire_reports_file_terms**: Get Terms and Conditions for Project Files
|
|
32
|
-
- **constructionwire_reports_add_file_terms**: Set request body to
|
|
32
|
+
- **constructionwire_reports_add_file_terms**: Set request body to "true" to indicate that you read and agree to BuildCentral's Terms and Conditions. Read terms at /2.0/reports/files/terms.
|
|
33
33
|
- **constructionwire_reports_follow**: Create a Project Following
|
|
34
34
|
- **constructionwire_reports_unfollow**: Delete a Project Following
|
|
35
35
|
- **constructionwire_reports_following**: List Project Followings
|
|
@@ -38,10 +38,10 @@ This MCP server provides 75 tools across 1 integrations:
|
|
|
38
38
|
- **constructionwire_companies_get**: Get a Company
|
|
39
39
|
- **constructionwire_companies_locations**: List Company Locations
|
|
40
40
|
- **constructionwire_companies_location**: Get a Company Location
|
|
41
|
-
- **constructionwire_companies_people**: List Company
|
|
42
|
-
- **constructionwire_companies_projects**: List Company
|
|
43
|
-
- **constructionwire_companies_relationships**: List Company
|
|
44
|
-
- **constructionwire_companies_stats**: List Company
|
|
41
|
+
- **constructionwire_companies_people**: List Company's People
|
|
42
|
+
- **constructionwire_companies_projects**: List Company's Project Activities
|
|
43
|
+
- **constructionwire_companies_relationships**: List Company's Relationships
|
|
44
|
+
- **constructionwire_companies_stats**: List Company's Stats
|
|
45
45
|
- **constructionwire_companies_facets**: List Company Facets
|
|
46
46
|
- **constructionwire_companies_following**: List Company Followings
|
|
47
47
|
- **constructionwire_companies_follow**: Create a Company Following
|
|
@@ -49,9 +49,9 @@ This MCP server provides 75 tools across 1 integrations:
|
|
|
49
49
|
- **constructionwire_companies_all_locations**: List Locations of multiple Companies
|
|
50
50
|
- **constructionwire_people_list**: List People
|
|
51
51
|
- **constructionwire_people_get**: Get a Person
|
|
52
|
-
- **constructionwire_people_projects**: List Person
|
|
53
|
-
- **constructionwire_people_relationships**: List Person
|
|
54
|
-
- **constructionwire_people_stats**: List Person
|
|
52
|
+
- **constructionwire_people_projects**: List Person's Project Activities
|
|
53
|
+
- **constructionwire_people_relationships**: List Person's Relationships
|
|
54
|
+
- **constructionwire_people_stats**: List Person's Stats
|
|
55
55
|
- **constructionwire_people_facets**: List People Facets
|
|
56
56
|
- **constructionwire_people_following**: List People Followings
|
|
57
57
|
- **constructionwire_people_follow**: Create a Person Following
|
|
@@ -83,12 +83,12 @@ This MCP server provides 75 tools across 1 integrations:
|
|
|
83
83
|
- **constructionwire_auth_login**: Create an Access Token
|
|
84
84
|
- **constructionwire_auth_details**: List Authenticated Session Details
|
|
85
85
|
- **constructionwire_auth_logout**: Logout from Authenticated Session
|
|
86
|
-
- **constructionwire_auth_subscription**:
|
|
87
|
-
- **constructionwire_common_get_list**:
|
|
88
|
-
- **constructionwire_common_retail_chains**:
|
|
89
|
-
- **constructionwire_common_states**:
|
|
90
|
-
- **constructionwire_common_counties**:
|
|
91
|
-
- **constructionwire_common_regions**:
|
|
86
|
+
- **constructionwire_auth_subscription**: Get Subscription Details for the Authenticated Session
|
|
87
|
+
- **constructionwire_common_get_list**: Get a Common List by ID
|
|
88
|
+
- **constructionwire_common_retail_chains**: List Retail Chains
|
|
89
|
+
- **constructionwire_common_states**: List US States
|
|
90
|
+
- **constructionwire_common_counties**: List Counties for a State
|
|
91
|
+
- **constructionwire_common_regions**: List US State Regions
|
|
92
92
|
|
|
93
93
|
## Installation
|
|
94
94
|
|
|
@@ -136,8 +136,32 @@ Add this to your Claude Desktop configuration:
|
|
|
136
136
|
}
|
|
137
137
|
```
|
|
138
138
|
|
|
139
|
-
##
|
|
140
|
-
|
|
139
|
+
## Getting API Credentials
|
|
140
|
+
|
|
141
|
+
ConstructionWire API access is provided through their Data Services team — there is no self-serve developer portal.
|
|
142
|
+
|
|
143
|
+
### How to get credentials
|
|
144
|
+
|
|
145
|
+
1. **Phone (fastest):** Call **+1 (866) 316-5300** during business hours (Mon–Fri, 9am–5pm Central) and ask for API access / Data Services.
|
|
146
|
+
2. **Email:** Send a request to **success.us@hubexo.com** asking for API trial credentials for `api.constructionwire.com`.
|
|
147
|
+
3. **Free trial form:** Submit at [constructionwire.com/free-trial](https://info.buildcentral.com/free-trial-constructionwire) — this gives web access and enters the sales pipeline (API access may require a follow-up).
|
|
148
|
+
|
|
149
|
+
### References
|
|
150
|
+
|
|
151
|
+
- [API Documentation (Postman)](https://www.postman.com/buildcentral/public/documentation/gxn6y0g/constructionwire-api-2-0)
|
|
152
|
+
- [API Brochure (PDF)](https://www.constructionwire.com/Content/pdf/buildcentral_api.pdf)
|
|
153
|
+
- [Data Services](https://www.constructionwire.com/DataServices)
|
|
154
|
+
|
|
155
|
+
### Configuration
|
|
156
|
+
|
|
157
|
+
Once you have credentials, set them as environment variables:
|
|
158
|
+
|
|
159
|
+
```env
|
|
160
|
+
CONSTRUCTIONWIRE_USERNAME=your_username
|
|
161
|
+
CONSTRUCTIONWIRE_PASSWORD=your_password
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
The MCP uses these to authenticate via `constructionwire_auth_login` at startup.
|
|
141
165
|
|
|
142
166
|
## Advanced Features
|
|
143
167
|
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { Logger } from '../services/logger.js';
|
|
2
2
|
import { RequestOptions } from '../types.js';
|
|
3
3
|
export interface ConstructionwireClientConfig {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
constructionwireUsername?: string;
|
|
5
|
+
constructionwirePassword?: string;
|
|
6
|
+
apiBaseUrl?: string;
|
|
7
7
|
timeout?: number;
|
|
8
8
|
rateLimit?: number;
|
|
9
|
-
authToken?: string;
|
|
10
9
|
logger?: Logger;
|
|
11
10
|
}
|
|
12
11
|
export declare class ConstructionwireClient {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constructionwire-client.d.ts","sourceRoot":"","sources":["../../src/clients/constructionwire-client.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAC/C,OAAO,EAAE,cAAc,EAAoB,MAAM,aAAa,CAAC;AAE/D,MAAM,WAAW,4BAA4B;IAC3C,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,
|
|
1
|
+
{"version":3,"file":"constructionwire-client.d.ts","sourceRoot":"","sources":["../../src/clients/constructionwire-client.ts"],"names":[],"mappings":"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"}
|