Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Interact with Manatal recruitment API for candidates, jobs, matches, contacts, and organizations. Use when working with recruiting data, applicant tracking, or HR automation. --- name: manatal-api description: Interact with Manatal recruitment API for candidates, jobs, matches, contacts, and organizations. Use when working with recruiting data, applicant tracking, or HR automation. --- Manatal API Reference Authentication Set your API key as an environment variable: All requests require authentication via header: - **Preferred**: Authorization: Token $MANATAL_API_KEY - **Alternative**: x- Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
manatal-api is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Interact with Manatal recruitment API for candidates, jobs, matches, contacts, and organizations. Use when working with recruiting data, applicant tracking, or HR automation. --- name: manatal-api description: Interact with Manatal recruitment API for candidates, jobs, matches, contacts, and organizations. Use when working with recruiting data, applicant tracking, or HR automation. --- Manatal API Reference Authentication Set your API key as an environment variable: All requests require authentication via header: - **Preferred**: Authorization: Token $MANATAL_API_KEY - **Alternative**: x-
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Kismet Labs Inc
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/Kismet-Labs-Inc/manatal-skills.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Kismet Labs Inc
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
export MANATAL_API_KEY="your-api-key-here"
bash
curl -X GET "https://api.manatal.com/open/v3/candidates/?limit=20&offset=0" \ -H "Authorization: Token $MANATAL_API_KEY"
bash
curl -X GET "https://api.manatal.com/open/v3/candidates/?limit=20&offset=0" \ -H "Authorization: Token $MANATAL_API_KEY"
bash
curl -X POST "https://api.manatal.com/open/v3/candidates/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{bash
curl -X POST "https://api.manatal.com/open/v3/candidates/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"phone_number": "+1234567890",
"position_applied": "Software Engineer"
}'bash
curl -X GET "https://api.manatal.com/open/v3/candidates/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY"Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Interact with Manatal recruitment API for candidates, jobs, matches, contacts, and organizations. Use when working with recruiting data, applicant tracking, or HR automation. --- name: manatal-api description: Interact with Manatal recruitment API for candidates, jobs, matches, contacts, and organizations. Use when working with recruiting data, applicant tracking, or HR automation. --- Manatal API Reference Authentication Set your API key as an environment variable: All requests require authentication via header: - **Preferred**: Authorization: Token $MANATAL_API_KEY - **Alternative**: x-
Set your API key as an environment variable:
export MANATAL_API_KEY="your-api-key-here"
All requests require authentication via header:
Authorization: Token $MANATAL_API_KEYx-api-key: $MANATAL_API_KEYBase URL: https://api.manatal.com/open/v3/
| Resource | List | Create | Get | Update | Delete |
|----------|------|--------|-----|--------|--------|
| Candidates | GET /candidates/ | POST /candidates/ | GET /candidates/{id}/ | PATCH /candidates/{id}/ | DELETE /candidates/{id}/ |
| Jobs | GET /jobs/ | POST /jobs/ | GET /jobs/{id}/ | PATCH /jobs/{id}/ | DELETE /jobs/{id}/ |
| Matches | GET /matches/ | POST /matches/ | GET /matches/{id}/ | PATCH /matches/{id}/ | DELETE /matches/{id}/ |
| Contacts | GET /contacts/ | POST /contacts/ | GET /contacts/{id}/ | PATCH /contacts/{id}/ | DELETE /contacts/{id}/ |
| Organizations | GET /organizations/ | POST /organizations/ | GET /organizations/{id}/ | PATCH /organizations/{id}/ | DELETE /organizations/{id}/ |
?limit=20&offset=0?ordering=created_at or ?ordering=-created_at (descending)?search=keyword?status=activecurl -X GET "https://api.manatal.com/open/v3/candidates/?limit=20&offset=0" \
-H "Authorization: Token $MANATAL_API_KEY"
curl -X POST "https://api.manatal.com/open/v3/candidates/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"phone_number": "+1234567890",
"position_applied": "Software Engineer"
}'
curl -X GET "https://api.manatal.com/open/v3/candidates/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY"
curl -X PATCH "https://api.manatal.com/open/v3/candidates/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"first_name": "Jane"}'
curl -X DELETE "https://api.manatal.com/open/v3/candidates/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY"
| Sub-resource | Endpoint |
|--------------|----------|
| Activities | GET/POST /candidates/{id}/activities/ |
| Educations | GET/POST /candidates/{id}/educations/ |
| Experiences | GET/POST /candidates/{id}/experiences/ |
| Attachments | GET/POST /candidates/{id}/attachments/ |
| Notes | GET/POST /candidates/{id}/notes/ |
| Matches | GET /candidates/{id}/matches/ |
curl -X POST "https://api.manatal.com/open/v3/candidates/{id}/educations/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"school": "MIT",
"degree": "Bachelor",
"field_of_study": "Computer Science",
"start_date": "2015-09-01",
"end_date": "2019-06-01"
}'
curl -X POST "https://api.manatal.com/open/v3/candidates/{id}/experiences/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"company_name": "Tech Corp",
"position_title": "Software Developer",
"start_date": "2019-07-01",
"is_current": true
}'
curl -X POST "https://api.manatal.com/open/v3/candidates/{id}/attachments/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-F "file=@/path/to/resume.pdf" \
-F "attachment_type=resume"
curl -X GET "https://api.manatal.com/open/v3/jobs/?limit=20&offset=0" \
-H "Authorization: Token $MANATAL_API_KEY"
curl -X POST "https://api.manatal.com/open/v3/jobs/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"position_name": "Senior Software Engineer",
"department": "Engineering",
"status": "open",
"job_type": "full_time",
"description": "We are looking for...",
"requirements": "5+ years experience..."
}'
curl -X GET "https://api.manatal.com/open/v3/jobs/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY"
curl -X PATCH "https://api.manatal.com/open/v3/jobs/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"status": "closed"}'
curl -X DELETE "https://api.manatal.com/open/v3/jobs/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY"
| Sub-resource | Endpoint |
|--------------|----------|
| Activities | GET/POST /jobs/{id}/activities/ |
| Attachments | GET/POST /jobs/{id}/attachments/ |
| Matches | GET /jobs/{id}/matches/ |
| Notes | GET/POST /jobs/{id}/notes/ |
Matches connect candidates to jobs through the recruitment pipeline.
curl -X GET "https://api.manatal.com/open/v3/matches/?limit=20" \
-H "Authorization: Token $MANATAL_API_KEY"
Filter by job or candidate:
curl -X GET "https://api.manatal.com/open/v3/matches/?job={job_id}" \
-H "Authorization: Token $MANATAL_API_KEY"
curl -X GET "https://api.manatal.com/open/v3/matches/?candidate={candidate_id}" \
-H "Authorization: Token $MANATAL_API_KEY"
curl -X POST "https://api.manatal.com/open/v3/matches/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"candidate": {candidate_id},
"job": {job_id},
"stage": {stage_id}
}'
curl -X PATCH "https://api.manatal.com/open/v3/matches/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"stage": {new_stage_id}}'
| Sub-resource | Endpoint |
|--------------|----------|
| Activities | GET/POST /matches/{id}/activities/ |
| Attachments | GET/POST /matches/{id}/attachments/ |
| Notes | GET/POST /matches/{id}/notes/ |
Contacts are people at client organizations (hiring managers, etc.).
curl -X GET "https://api.manatal.com/open/v3/contacts/?limit=20" \
-H "Authorization: Token $MANATAL_API_KEY"
curl -X POST "https://api.manatal.com/open/v3/contacts/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"first_name": "Sarah",
"last_name": "Smith",
"email": "sarah.smith@company.com",
"organization": {organization_id},
"position_title": "HR Manager"
}'
# Get
curl -X GET "https://api.manatal.com/open/v3/contacts/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY"
# Update
curl -X PATCH "https://api.manatal.com/open/v3/contacts/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"position_title": "Senior HR Manager"}'
# Delete
curl -X DELETE "https://api.manatal.com/open/v3/contacts/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY"
Client companies/organizations.
curl -X GET "https://api.manatal.com/open/v3/organizations/?limit=20" \
-H "Authorization: Token $MANATAL_API_KEY"
curl -X POST "https://api.manatal.com/open/v3/organizations/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Acme Corporation",
"industry": "Technology",
"website": "https://acme.com",
"description": "Leading tech company"
}'
# Get
curl -X GET "https://api.manatal.com/open/v3/organizations/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY"
# Update
curl -X PATCH "https://api.manatal.com/open/v3/organizations/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"industry": "Software"}'
# Delete
curl -X DELETE "https://api.manatal.com/open/v3/organizations/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY"
Read-only endpoints for system reference data.
curl -X GET "https://api.manatal.com/open/v3/match-stages/" \
-H "Authorization: Token $MANATAL_API_KEY"
curl -X GET "https://api.manatal.com/open/v3/job-pipelines/" \
-H "Authorization: Token $MANATAL_API_KEY"
curl -X GET "https://api.manatal.com/open/v3/users/" \
-H "Authorization: Token $MANATAL_API_KEY"
GET /currencies/ - Available currenciesGET /languages/ - Language codesGET /nationalities/ - Nationality codesGET /industries/ - Industry categoriesGET /countries/ - Country codesPublic endpoints for career page integrations.
curl -X GET "https://api.manatal.com/open/v3/career-page/{career_page_id}/jobs/"
curl -X GET "https://api.manatal.com/open/v3/career-page/{career_page_id}/jobs/{job_id}/application-form/"
curl -X POST "https://api.manatal.com/open/v3/career-page/{career_page_id}/jobs/{job_id}/apply/" \
-H "Content-Type: multipart/form-data" \
-F "first_name=John" \
-F "last_name=Doe" \
-F "email=john@example.com" \
-F "resume=@/path/to/resume.pdf"
curl -X POST "https://api.manatal.com/open/v3/career-page/{career_page_id}/jobs/{job_id}/refer/" \
-H "Content-Type: application/json" \
-d '{
"referrer_name": "Jane Smith",
"referrer_email": "jane@example.com",
"candidate_first_name": "John",
"candidate_last_name": "Doe",
"candidate_email": "john@example.com"
}'
Subscribe to events for real-time notifications.
curl -X GET "https://api.manatal.com/open/v3/webhooks/" \
-H "Authorization: Token $MANATAL_API_KEY"
curl -X POST "https://api.manatal.com/open/v3/webhooks/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://your-server.com/webhook",
"events": ["candidate.created", "candidate.updated", "match.stage_changed"],
"is_active": true
}'
candidate.created, candidate.updated, candidate.deletedjob.created, job.updated, job.deletedmatch.created, match.updated, match.deleted, match.stage_changedcontact.created, contact.updated, contact.deletedorganization.created, organization.updated, organization.deleted# Update
curl -X PATCH "https://api.manatal.com/open/v3/webhooks/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"is_active": false}'
# Delete
curl -X DELETE "https://api.manatal.com/open/v3/webhooks/{id}/" \
-H "Authorization: Token $MANATAL_API_KEY"
200 - Success201 - Created204 - No Content (successful delete)400 - Bad Request (invalid data)401 - Unauthorized (invalid/missing API key)403 - Forbidden (insufficient permissions)404 - Not Found429 - Rate Limited500 - Server Error{
"detail": "Error message here",
"errors": {
"field_name": ["Specific field error"]
}
}
If you receive a 429 response, wait and retry with exponential backoff:
# Check rate limit headers in response
# X-RateLimit-Limit: requests allowed per window
# X-RateLimit-Remaining: requests remaining
# X-RateLimit-Reset: Unix timestamp when limit resets
$MANATAL_API_KEY, export it in a separate command first, or use the key directly. Running export VAR=x && curl $VAR won't work because bash expands variables before executing export./match-stages/ before moving candidates through pipelineMachine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/snapshot"
curl -s "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/contract"
curl -s "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T02:49:51.768Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Kismet Labs Inc",
"href": "https://github.com/Kismet-Labs-Inc/manatal-skills",
"sourceUrl": "https://github.com/Kismet-Labs-Inc/manatal-skills",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T02:15:40.482Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T02:15:40.482Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/kismet-labs-inc-manatal-skills/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to manatal-api and adjacent AI workflows.