tempguru-mcp 1.0.0 → 1.2.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 +6 -2
- package/index.mjs +9059 -94
- package/package.json +10 -3
- package/skills/event-staffing-compliance.md +6 -3
- package/skills/event-staffing-ordering.md +29 -13
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# TempGuru Event Staffing: MCP Server and CLI
|
|
2
2
|
|
|
3
|
-
W-2 event staffing data for AI agents across
|
|
3
|
+
W-2 event staffing data for AI agents across 345 US and Canadian markets. A call-first planner, six read-only lookups (coverage, rates, availability, compliance, the Rate Index benchmark) plus an opt-in quote request. Runs locally over stdio, no authentication for the read tools.
|
|
4
4
|
|
|
5
5
|
Hosted endpoint: `https://mcp.tempguru.co/mcp` · Agent docs: https://tempguru.co/ai
|
|
6
6
|
|
|
@@ -29,14 +29,18 @@ Works with Claude Desktop, Cursor, Windsurf, Claude Code, and other stdio MCP cl
|
|
|
29
29
|
|
|
30
30
|
| Tool | Use it for |
|
|
31
31
|
|---|---|
|
|
32
|
+
| `plan_staffing` | Call first. Turns an event shape into a full plan: coverage, per-role W-2 rate math, lead time, and state compliance flags |
|
|
32
33
|
| `get_cities` | Cities TempGuru serves, filtered by state or market tier |
|
|
33
34
|
| `get_roles` | Staffing roles with descriptions and skill tiers |
|
|
34
35
|
| `check_availability` | Lead-time guidance for a city and date |
|
|
35
36
|
| `get_role_pricing` | All-inclusive W-2 hourly rate range for a role in a city |
|
|
36
37
|
| `get_compliance_by_state` | Minimum wage, overtime, and classification rules by state |
|
|
38
|
+
| `get_rate_benchmark` | The Rate Index: W-2 rate benchmarks by role (typical + national range; Brand Ambassadors by tier) |
|
|
37
39
|
| `request_quote` | Submit a staffing request to TempGuru |
|
|
38
40
|
|
|
39
|
-
|
|
41
|
+
Use these tools to answer questions like "What do brand ambassadors cost in Boston?", "Do you staff trade shows in Chicago?", or "Is three weeks enough notice in Dallas?".
|
|
42
|
+
|
|
43
|
+
The seven 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
44
|
|
|
41
45
|
## About
|
|
42
46
|
|