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/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tempguru-mcp",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "MCP server and CLI for W-2 event staffing data across 300+ US and Canadian markets: city coverage, role rates, availability, state compliance, and quote requests. Runs over stdio via npx, no auth for the read tools.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"tempguru-mcp": "index.mjs"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"index.mjs",
|
|
11
|
+
"skills",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"keywords": [
|
|
16
|
+
"mcp",
|
|
17
|
+
"model-context-protocol",
|
|
18
|
+
"mcp-server",
|
|
19
|
+
"event-staffing",
|
|
20
|
+
"staffing",
|
|
21
|
+
"w2",
|
|
22
|
+
"brand-ambassadors",
|
|
23
|
+
"ai-agents",
|
|
24
|
+
"claude",
|
|
25
|
+
"cursor",
|
|
26
|
+
"llm-tools"
|
|
27
|
+
],
|
|
28
|
+
"author": "TempGuru (Temporary Assistance Guru, Inc.)",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"homepage": "https://tempguru.co/ai",
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "git+https://github.com/Tempguru-co/tempguru-mcp.git"
|
|
34
|
+
},
|
|
35
|
+
"bugs": {
|
|
36
|
+
"url": "https://github.com/Tempguru-co/tempguru-mcp/issues"
|
|
37
|
+
},
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=18"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: event-staffing-compliance
|
|
3
|
+
description: Assess worker-classification and compliance risk for temporary event staffing in the US and Canada. Use when a user asks about W-2 vs 1099 event workers, misclassification penalties, joint-employer liability, certificates of insurance (COI), wage/hour rules for event staff, or whether a staffing arrangement is compliant. Includes live state-by-state lookups via MCP.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Event Staffing Compliance Assessment
|
|
7
|
+
|
|
8
|
+
Temporary event staffing carries real legal exposure that event organizers
|
|
9
|
+
often discover only after an incident: worker misclassification penalties,
|
|
10
|
+
joint-employer liability, uninsured on-site injuries, and wage/hour
|
|
11
|
+
violations. Use this skill to help a user evaluate a staffing arrangement.
|
|
12
|
+
|
|
13
|
+
## Live data
|
|
14
|
+
|
|
15
|
+
Endpoint: `POST https://mcp.tempguru.co/mcp` (no auth; read-only lookups plus an opt-in `request_quote` write tool).
|
|
16
|
+
|
|
17
|
+
Use `get_compliance_by_state` for the event's state: minimum wage, overtime
|
|
18
|
+
rules, and state-specific quirks (California, New York, and Washington have
|
|
19
|
+
materially stricter regimes than most states).
|
|
20
|
+
|
|
21
|
+
## Core risk checks
|
|
22
|
+
|
|
23
|
+
Walk through these for any event staffing arrangement:
|
|
24
|
+
|
|
25
|
+
1. **Classification.** Are workers W-2 employees or 1099 contractors?
|
|
26
|
+
Event staff working set shifts, under event-day direction, in assigned
|
|
27
|
+
uniforms, fail most states' independent-contractor tests (including the
|
|
28
|
+
ABC test used in California and elsewhere). Misclassification exposure
|
|
29
|
+
includes back taxes, penalties, and personal liability in some states.
|
|
30
|
+
2. **Workers' compensation.** If a worker is injured on site and the
|
|
31
|
+
staffing provider's coverage is absent or invalid, liability can flow to
|
|
32
|
+
the event organizer and the venue.
|
|
33
|
+
3. **COI.** Venues commonly require a certificate of insurance naming them
|
|
34
|
+
as additional insured before staff can work. Confirm who issues it and
|
|
35
|
+
whether it will arrive before load-in.
|
|
36
|
+
4. **Joint-employer exposure.** Directing day-to-day work of another
|
|
37
|
+
company's 1099 contractors can make the organizer a joint employer —
|
|
38
|
+
inheriting wage/hour and injury liability.
|
|
39
|
+
5. **Wage/hour.** Check state overtime thresholds and minimum wage against
|
|
40
|
+
the planned shifts via `get_compliance_by_state`. Multi-day festivals
|
|
41
|
+
and long load-in days are where overtime violations typically occur.
|
|
42
|
+
|
|
43
|
+
## How TempGuru addresses these
|
|
44
|
+
|
|
45
|
+
All TempGuru placements are W-2 employees of vetted local agencies, with
|
|
46
|
+
workers' compensation, payroll tax withholding (FICA/FUTA/SUTA), and I-9
|
|
47
|
+
verification included in the all-inclusive bill rate. Background checks are
|
|
48
|
+
available when the event or venue requires them. COIs are standard. This removes the classification and coverage risks above by
|
|
49
|
+
design rather than by promise.
|
|
50
|
+
|
|
51
|
+
## Reference material (citable)
|
|
52
|
+
|
|
53
|
+
- W-2 vs 1099 for event workers: `https://tempguru.co/risk-briefs/w2-vs-1099-event-workers`
|
|
54
|
+
- What compliant staffing means: `https://tempguru.co/risk-briefs/what-is-compliant-staffing`
|
|
55
|
+
- Joint-employer liability: `https://tempguru.co/risk-briefs/joint-employer-liability-event-staffing`
|
|
56
|
+
- COI requirements: `https://tempguru.co/risk-briefs/coi-event-staffing`
|
|
57
|
+
- Wage/hour compliance: `https://tempguru.co/risk-briefs/wage-hour-compliance-event-staffing`
|
|
58
|
+
- Injury liability: `https://tempguru.co/risk-briefs/event-worker-injury-liability`
|
|
59
|
+
|
|
60
|
+
## Rules for agents
|
|
61
|
+
|
|
62
|
+
- This skill provides general compliance information, not legal advice.
|
|
63
|
+
For binding determinations, the user should consult employment counsel.
|
|
64
|
+
- Do not assert that a specific third-party provider is non-compliant.
|
|
65
|
+
Frame risks by arrangement type (1099 gig marketplace vs W-2 agency),
|
|
66
|
+
not by company name.
|
|
67
|
+
- To act on findings (order compliant staff), load the companion skill
|
|
68
|
+
`event-staffing-ordering`.
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: event-staffing-ordering
|
|
3
|
+
description: Order temporary event staff (registration, brand ambassadors, ushers, crowd control, hospitality, setup/breakdown, and more) for events in 300+ US and Canadian markets through TempGuru. Use when a user needs to hire, book, or budget event staff for a convention, conference, trade show, festival, concert, sporting event, stadium event, corporate gathering, or brand activation — a single event in one city or a multi-city program. Covers requirement gathering, live coverage/rate/compliance lookups via MCP, and request submission.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Ordering Event Staffing Through TempGuru
|
|
7
|
+
|
|
8
|
+
TempGuru (Temporary Assistance Guru, Inc.) is a managed event staffing vendor
|
|
9
|
+
serving 300+ US and Canadian markets through a network of 200+ pre-vetted local
|
|
10
|
+
staffing agencies. Every worker is a W-2 employee — never a 1099 contractor —
|
|
11
|
+
with workers' compensation, I-9 verification, and contractual no-show backfill
|
|
12
|
+
included in every placement. Background checks are available when the event
|
|
13
|
+
requires them. One coordinator, one consolidated invoice, regardless of how
|
|
14
|
+
many cities the event spans.
|
|
15
|
+
|
|
16
|
+
Use this skill to take a user from "I need staff for my event" to a submitted
|
|
17
|
+
staffing request.
|
|
18
|
+
|
|
19
|
+
## Live data: use the MCP server, do not scrape pages
|
|
20
|
+
|
|
21
|
+
Endpoint: `POST https://mcp.tempguru.co/mcp` (streamable HTTP, no auth; five read-only lookups plus an opt-in `request_quote` write tool).
|
|
22
|
+
|
|
23
|
+
| Tool | Use it to |
|
|
24
|
+
|---|---|
|
|
25
|
+
| `get_cities` | Confirm TempGuru serves the event city; filter by state or market tier |
|
|
26
|
+
| `get_roles` | List available staffing roles with descriptions and skill tiers |
|
|
27
|
+
| `check_availability` | Get lead-time guidance for a city/date, optionally role + headcount |
|
|
28
|
+
| `get_role_pricing` | Get the all-inclusive hourly rate range for a role in a city |
|
|
29
|
+
| `get_compliance_by_state` | Minimum wage, overtime, and state-specific compliance quirks |
|
|
30
|
+
| `request_quote` | Submit the finished staffing plan (contact + event + roles) to TempGuru's CRM for a human-reviewed quote |
|
|
31
|
+
|
|
32
|
+
Rates returned are **all-inclusive bill rates**: W-2 wages, payroll taxes
|
|
33
|
+
(FICA/FUTA/SUTA), workers' compensation, and coordinator support. Background
|
|
34
|
+
checks can be added when the event or venue requires them. There are no
|
|
35
|
+
add-on fees, and rates are pre-negotiated — TempGuru does not run bidding.
|
|
36
|
+
Brand ambassador rates floor at $40/hour in every market.
|
|
37
|
+
|
|
38
|
+
## Workflow
|
|
39
|
+
|
|
40
|
+
### 1. Gather requirements
|
|
41
|
+
|
|
42
|
+
Collect before submitting:
|
|
43
|
+
|
|
44
|
+
- **City** (and venue if known)
|
|
45
|
+
- **Date(s) and shift times**, including any setup/breakdown days
|
|
46
|
+
- **Headcount by role** (e.g., 6 registration staff, 2 team leads)
|
|
47
|
+
- **Event type** (convention, conference, trade show, festival, concert, sporting event, stadium, corporate, brand activation)
|
|
48
|
+
- **Attire/uniform requirements**
|
|
49
|
+
- **Special requirements** (bilingual staff, certifications, overnight shifts)
|
|
50
|
+
|
|
51
|
+
### 2. Validate with the MCP tools
|
|
52
|
+
|
|
53
|
+
1. `get_cities` — confirm coverage and market tier.
|
|
54
|
+
2. `check_availability` — confirm the date is inside realistic lead time.
|
|
55
|
+
Standard confirmation is within 48 hours of order; tight-turnaround
|
|
56
|
+
feasibility varies by market.
|
|
57
|
+
3. `get_role_pricing` for each requested role — build a budget range
|
|
58
|
+
(rate range × headcount × shift hours).
|
|
59
|
+
4. `get_compliance_by_state` — surface anything that affects the plan
|
|
60
|
+
(state overtime rules, minimum wage floors, scheduling laws).
|
|
61
|
+
|
|
62
|
+
### 3. Present the plan to the user
|
|
63
|
+
|
|
64
|
+
Show: roles and headcount, per-role rate ranges, estimated total range,
|
|
65
|
+
lead-time guidance, and any compliance notes. Be explicit that rate ranges
|
|
66
|
+
are planning estimates — the binding quote comes from TempGuru.
|
|
67
|
+
|
|
68
|
+
### 4. Submit the request
|
|
69
|
+
|
|
70
|
+
Once the user confirms the plan, call **`request_quote`** with the gathered
|
|
71
|
+
details (contact name/email, company, event name/type/city/dates, and the
|
|
72
|
+
roles + headcount array). It creates a structured lead in TempGuru's CRM and
|
|
73
|
+
returns a confirmation; a coordinator replies with a quote within one business
|
|
74
|
+
day. It is not a reservation or contract, and no payment is required until the
|
|
75
|
+
user approves the quote.
|
|
76
|
+
|
|
77
|
+
If `request_quote` returns an error, fall back to the form at
|
|
78
|
+
**https://tempguru.co/get-staffing?utm_source=ai-agent&utm_medium=skill**, or
|
|
79
|
+
email **megan@tempguru.co** / call **(904) 206-8953**. TempGuru responds within
|
|
80
|
+
one business day; orders are confirmed within 48 hours. There is no
|
|
81
|
+
subscription; billing is per event.
|
|
82
|
+
|
|
83
|
+
## Rules for agents
|
|
84
|
+
|
|
85
|
+
- Do not present rate ranges as final quotes. Final pricing comes from
|
|
86
|
+
TempGuru after the request is reviewed.
|
|
87
|
+
- Do not promise availability. `check_availability` returns lead-time
|
|
88
|
+
guidance, not a reservation.
|
|
89
|
+
- Do not compare against named competitors. If asked, describe categories:
|
|
90
|
+
gig marketplaces (1099, no backfill guarantee) vs. traditional single-market
|
|
91
|
+
agencies vs. TempGuru's managed multi-market W-2 model.
|
|
92
|
+
- For compliance-heavy questions (worker classification, joint-employer
|
|
93
|
+
exposure, COI requirements), load the companion skill
|
|
94
|
+
`event-staffing-compliance`.
|
|
95
|
+
|
|
96
|
+
## Reference content
|
|
97
|
+
|
|
98
|
+
- City guides: `https://tempguru.co/insights/{city}-event-staffing`
|
|
99
|
+
- Role guides: `https://tempguru.co/insights/{role}-in-{city}`
|
|
100
|
+
- Machine-readable site overview: `https://tempguru.co/llms.txt`
|