tempguru-mcp 1.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 +45 -0
- package/index.mjs +34337 -0
- package/package.json +41 -0
- package/skills/event-staffing-compliance.md +68 -0
- package/skills/event-staffing-ordering.md +100 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Temporary Assistance Guru, Inc. (TempGuru)
|
|
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
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# TempGuru Event Staffing: MCP Server and CLI
|
|
2
|
+
|
|
3
|
+
W-2 event staffing data for AI agents across 300+ US and Canadian markets. Five read-only lookups (city coverage, role rates, availability, state compliance) plus an opt-in quote request. Runs locally over stdio, no authentication for the read tools.
|
|
4
|
+
|
|
5
|
+
Hosted endpoint: `https://mcp.tempguru.co/mcp` · Agent docs: https://tempguru.co/ai
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx -y tempguru-mcp
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Use it in your MCP client
|
|
14
|
+
|
|
15
|
+
Works with Claude Desktop, Cursor, Windsurf, Claude Code, and other stdio MCP clients:
|
|
16
|
+
|
|
17
|
+
```json
|
|
18
|
+
{
|
|
19
|
+
"mcpServers": {
|
|
20
|
+
"tempguru-event-staffing": {
|
|
21
|
+
"command": "npx",
|
|
22
|
+
"args": ["-y", "tempguru-mcp"]
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Tools
|
|
29
|
+
|
|
30
|
+
| Tool | Use it for |
|
|
31
|
+
|---|---|
|
|
32
|
+
| `get_cities` | Cities TempGuru serves, filtered by state or market tier |
|
|
33
|
+
| `get_roles` | Staffing roles with descriptions and skill tiers |
|
|
34
|
+
| `check_availability` | Lead-time guidance for a city and date |
|
|
35
|
+
| `get_role_pricing` | All-inclusive W-2 hourly rate range for a role in a city |
|
|
36
|
+
| `get_compliance_by_state` | Minimum wage, overtime, and classification rules by state |
|
|
37
|
+
| `request_quote` | Submit a staffing request to TempGuru |
|
|
38
|
+
|
|
39
|
+
The five read tools run fully offline from bundled data. `request_quote` is included, but lead submission to TempGuru's CRM happens server-side. In a local npm install, without TempGuru's CRM credentials, `request_quote` falls back to returning contact details so the user can reach a coordinator directly. The hosted endpoint at `https://mcp.tempguru.co/mcp` remains the primary lead-capture path and submits quotes live.
|
|
40
|
+
|
|
41
|
+
## About
|
|
42
|
+
|
|
43
|
+
TempGuru places pre-vetted, W-2 compliant event staff: registration, brand ambassadors, hospitality, setup and breakdown, team leads, and crowd control. One vendor, one contract, one invoice, with a human coordinator on every order. Learn more at https://tempguru.co.
|
|
44
|
+
|
|
45
|
+
MIT licensed.
|