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
Full suite for TokenDraft fantasy crypto tournaments — authenticate with a Solana wallet, query/join/auto-join tournaments, and manage auto-draft asset priority rankings. --- name: tokendraft description: Full suite for TokenDraft fantasy crypto tournaments — authenticate with a Solana wallet, query/join/auto-join tournaments, and manage auto-draft asset priority rankings. env: - name: SOLANA_PRIVATE_KEY description: Base58-encoded Solana Ed25519 private key used to derive the wallet public key, sign authentication challenges, and sign on-chain buy-in transactions. required: true sens Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
tokendraft is best for try, only 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
Full suite for TokenDraft fantasy crypto tournaments — authenticate with a Solana wallet, query/join/auto-join tournaments, and manage auto-draft asset priority rankings. --- name: tokendraft description: Full suite for TokenDraft fantasy crypto tournaments — authenticate with a Solana wallet, query/join/auto-join tournaments, and manage auto-draft asset priority rankings. env: - name: SOLANA_PRIVATE_KEY description: Base58-encoded Solana Ed25519 private key used to derive the wallet public key, sign authentication challenges, and sign on-chain buy-in transactions. required: true sens
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
Nikzt
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/Nikzt/tokendraft-agent-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
Nikzt
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
curl -X POST https://tokendraft-production.up.railway.app/api/v2/agents/nonce \
-H "Content-Type: application/json" \
-d '{"walletPublicKey": "<WALLET_PUBLIC_KEY>"}'bash
curl -X POST https://tokendraft-production.up.railway.app/api/v2/agents/nonce \
-H "Content-Type: application/json" \
-d '{"walletPublicKey": "<WALLET_PUBLIC_KEY>"}'bash
curl -X POST https://tokendraft-production.up.railway.app/api/v2/agents/login \
-H "Content-Type: application/json" \
-d '{bash
curl -X POST https://tokendraft-production.up.railway.app/api/v2/agents/login \
-H "Content-Type: application/json" \
-d '{
"walletPublicKey": "<WALLET_PUBLIC_KEY>",
"nonce": "<NONCE>",
"signature": "<BASE58_SIGNATURE>"
}'bash
curl -X POST "https://tokendraft-production.up.railway.app/api/v2/users/displayName" \
-H "Authorization: Bearer $TOKENDRAFT_JWT" \
-H "Content-Type: application/json" \
-d '{"displayName": "<NEW_NAME>"}'bash
curl -X POST "https://tokendraft-production.up.railway.app/api/v2/users/displayName" \
-H "Authorization: Bearer $TOKENDRAFT_JWT" \
-H "Content-Type: application/json" \
-d '{"displayName": "<NEW_NAME>"}'Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Full suite for TokenDraft fantasy crypto tournaments — authenticate with a Solana wallet, query/join/auto-join tournaments, and manage auto-draft asset priority rankings. --- name: tokendraft description: Full suite for TokenDraft fantasy crypto tournaments — authenticate with a Solana wallet, query/join/auto-join tournaments, and manage auto-draft asset priority rankings. env: - name: SOLANA_PRIVATE_KEY description: Base58-encoded Solana Ed25519 private key used to derive the wallet public key, sign authentication challenges, and sign on-chain buy-in transactions. required: true sens
name: tokendraft description: Full suite for TokenDraft fantasy crypto tournaments — authenticate with a Solana wallet, query/join/auto-join tournaments, and manage auto-draft asset priority rankings. env:
Two-step challenge-response flow. Private key never leaves the local environment.
After successful login, store TOKENDRAFT_USER_ID (from user.id) and TOKENDRAFT_JWT (from token) as env vars. These are required by all other TokenDraft endpoints.
If any TokenDraft endpoint returns 401, re-run this auth flow automatically and retry the failed request.
curl -X POST https://tokendraft-production.up.railway.app/api/v2/agents/nonce \
-H "Content-Type: application/json" \
-d '{"walletPublicKey": "<WALLET_PUBLIC_KEY>"}'
Returns { nonce, message }. The message is the exact string to sign. Nonce expires after 5 minutes, single-use.
Sign message locally with Ed25519, base58-encode the signature:
curl -X POST https://tokendraft-production.up.railway.app/api/v2/agents/login \
-H "Content-Type: application/json" \
-d '{
"walletPublicKey": "<WALLET_PUBLIC_KEY>",
"nonce": "<NONCE>",
"signature": "<BASE58_SIGNATURE>"
}'
Returns { token, user }. First login auto-creates an account.
On first login (the user's displayName is a short hash like "a3F9x"), immediately ask the user: "Would you like to set a display name for your TokenDraft account?" If yes, ask them for the name they want and call the Set Display Name endpoint below. If no, continue without changing it.
curl -X POST "https://tokendraft-production.up.railway.app/api/v2/users/displayName" \
-H "Authorization: Bearer $TOKENDRAFT_JWT" \
-H "Content-Type: application/json" \
-d '{"displayName": "<NEW_NAME>"}'
Success response (HTTP 200):
{ "data": { "displayName": "chosen_name", "id": "<USER_ID>", "updatedDisplayNameAt": "<ISO_DATE>" }, "status": "success" }
Error responses:
{"error": "Display name is already taken"} — the name is not unique, ask the user to pick a different one.{"error": "Cannot change name more than once within 24 hours. Please try again in X hours and Y minutes.", "retryAfterMs": <MS>} — rate-limited, inform the user when they can try again.{"error": "User not found"} — re-authenticate and retry.Constraints: display name must be unique across all users. Can only be changed once every 24 hours.
import nacl from 'tweetnacl';
import bs58 from 'bs58';
const secretKey = bs58.decode(process.env.SOLANA_PRIVATE_KEY);
const keyPair = nacl.sign.keyPair.fromSecretKey(secretKey);
const walletPublicKey = bs58.encode(keyPair.publicKey);
// Step 1
const { nonce, message } = await fetch('https://tokendraft-production.up.railway.app/api/v2/agents/nonce', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ walletPublicKey }),
}).then(r => r.json());
// Step 2
const messageBytes = new TextEncoder().encode(message);
const signature = nacl.sign.detached(messageBytes, keyPair.secretKey);
const signatureBase58 = bs58.encode(signature);
const { token, user } = await fetch('https://tokendraft-production.up.railway.app/api/v2/agents/login', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ walletPublicKey, nonce, signature: signatureBase58 }),
}).then(r => r.json());
Include in all authenticated requests:
Authorization: Bearer $TOKENDRAFT_JWT
Token does not expire but may be invalidated on server secret rotation.
All endpoints use base URL https://tokendraft-production.up.railway.app and require Authorization: Bearer $TOKENDRAFT_JWT. Re-authenticate via the auth flow above on 401.
curl "https://tokendraft-production.up.railway.app/api/v2/agents/tournaments?<PARAMS>" \
-H "Authorization: Bearer $TOKENDRAFT_JWT"
| Param | Type | Description |
|-------|------|-------------|
| isOpen | boolean | Accepting registrations |
| isInProgress | boolean | Currently being played |
| isFinished | boolean | Completed |
| isRegistered | boolean | Filter by user's registration status |
| finishedLookbackHours | number | Hours to look back for finished (default: 24, 0 = all) |
Filters combine with AND. No state filter defaults to open tournaments only.
Returns array of TournamentSummary:
{ id: string, name: string, buyInAmountSol: number, registrationStartTime: string,
registrationEndTime: string, state: string, numPlayersRegistered: number,
maxPlayers: number, amIRegistered: boolean,
draftType: "snake" | "boosterPack" | "instantRoster",
rosterSlots: { Chain?: number, Meme?: number, Utility?: number, NFT?: number, Flex?: number } }
If buyInAmountSol is 0:
curl -X POST "https://tokendraft-production.up.railway.app/api/v2/tournaments/join/<TOURNAMENT_ID>" \
-H "Authorization: Bearer $TOKENDRAFT_JWT"
HTTP 200 = registered. Relay any error to the user. Share the lobby link: https://tokendraft.fun/tournaments/<TOURNAMENT_ID>
After joining, submit a team for this tournament (see Submit Team section below).
For buyInAmountSol > 0, verify SOL balance covers the buy-in + fees first.
1. Initiate transaction:
curl -X POST "https://tokendraft-production.up.railway.app/api/v2/buyIn/initiateTransaction" \
-H "Authorization: Bearer $TOKENDRAFT_JWT" \
-H "Content-Type: application/json" \
-d '{"tournamentId": "<ID>", "walletPublicKey": "<PUBKEY>"}'
Returns { transaction (base64), expectedSignature, tournamentInfo }.
2. Sign: Deserialize transaction as VersionedTransaction, sign with wallet keypair, re-serialize to base64.
3. Send signed transaction:
curl -X POST "https://tokendraft-production.up.railway.app/api/v2/buyIn/sendSignedTransaction" \
-H "Content-Type: application/json" \
-d '{
"signedTransactionBase64": "<BASE64>",
"tournamentId": "<ID>",
"expectedSignature": "<SIG>",
"walletPublicKey": "<PUBKEY>"
}'
HTTP 200 = registered. Relay errors (tournament full, already registered, on-chain failure). Share the lobby link: https://tokendraft.fun/tournaments/<TOURNAMENT_ID>
After joining, submit a team for this tournament (see Submit Team section below).
Set up a cron job to join all open tournaments every 30 minutes:
openclaw cron add \
--name "tokendraft-auto-join" \
--cron "*/30 * * * *" \
--session isolated \
--message "Auto-join open TokenDraft tournaments. Steps:
1. Authenticate with TokenDraft (see auth section above).
2. GET /agents/tournaments?isOpen=true&isRegistered=false to find open tournaments.
3. For each: if buyInAmountSol is 0, POST /tournaments/join/<id>. If > 0, check SOL balance and follow buy-in flow.
4. After joining each tournament, submit a team (see Submit Team section).
5. Report results for each tournament (joined or error reason)."
Manage with openclaw cron list, openclaw cron remove <id>, openclaw cron edit <id> --enabled false/true.
After joining any tournament, you must submit a team. All endpoints use base URL https://tokendraft-production.up.railway.app and require Authorization: Bearer $TOKENDRAFT_JWT.
Read the rosterSlots from the tournament (returned by the Query Tournaments endpoint). This tells you how many assets of each type are needed.
Example: { "Chain": 2, "Meme": 2, "Utility": 1, "NFT": 1, "Flex": 1 }
If a slot type is not present or has a value <= 0, ignore assets of that type.
curl "https://tokendraft-production.up.railway.app/api/v2/assets" \
-H "Authorization: Bearer $TOKENDRAFT_JWT"
Returns array of assets with fields: id, name, ticker, priceUSD, marketcapUSD, dayChangePercent, dayVolumeUSD, adpRanking, assetType, tags.
Each asset has an assetType (e.g. "Chain", "Meme", "Utility", "NFT"). The "Flex" slot accepts any type.
If the user hasn't already given ranking advice, ask how they want their team built (e.g. by market cap, volume, buy the dip, memecoins first).
For each slot type (except Flex), pick the best assets of that assetType based on the user's strategy. For Flex slot(s), pick the best remaining asset of any type.
Example — given rosterSlots: { "Chain": 2, "Meme": 2, "Utility": 1, "NFT": 1, "Flex": 1 } and a "highest market cap" strategy:
chains = assets.filter(a => a.assetType === "Chain").sort(by marketcapUSD desc)
memes = assets.filter(a => a.assetType === "Meme").sort(by marketcapUSD desc)
utils = assets.filter(a => a.assetType === "Utility").sort(by marketcapUSD desc)
nfts = assets.filter(a => a.assetType === "NFT").sort(by marketcapUSD desc)
Pick top N for each slot:
rank 1: chains[0] (Chain slot 1)
rank 2: chains[1] (Chain slot 2)
rank 3: memes[0] (Meme slot 1)
rank 4: memes[1] (Meme slot 2)
rank 5: utils[0] (Utility slot)
rank 6: nfts[0] (NFT slot)
rank 7: best remaining asset of any type (Flex slot)
Order the team in descending order of which asset you think will perform best. The asset at rank 1 is the captain and earns double points — so put the strongest overall pick first.
curl -X PUT "https://tokendraft-production.up.railway.app/api/v2/assetPriorityRankings" \
-H "Authorization: Bearer $TOKENDRAFT_JWT" \
-H "Content-Type: application/json" \
-d '{
"assets": [{"assetId": "<ID>", "rank": 1}, {"assetId": "<ID>", "rank": 2}, ...]
}'
Include exactly as many assets as the total number of roster slots for the tournament. Set rank to unique integers starting at 1.
Report which assets were picked for each slot and ask if they want to make any changes before the draft starts. If the user requests changes, rebuild and re-submit.
Machine 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/nikzt-tokendraft-agent-skills/snapshot"
curl -s "https://xpersona.co/api/v1/agents/nikzt-tokendraft-agent-skills/contract"
curl -s "https://xpersona.co/api/v1/agents/nikzt-tokendraft-agent-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/nikzt-tokendraft-agent-skills/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/nikzt-tokendraft-agent-skills/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/nikzt-tokendraft-agent-skills/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/nikzt-tokendraft-agent-skills/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/nikzt-tokendraft-agent-skills/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/nikzt-tokendraft-agent-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:48:54.764Z"
}
},
"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"
},
{
"key": "try",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "only",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:try|supported|profile capability:only|supported|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": "Nikzt",
"href": "https://github.com/Nikzt/tokendraft-agent-skills",
"sourceUrl": "https://github.com/Nikzt/tokendraft-agent-skills",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:19:26.962Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/nikzt-tokendraft-agent-skills/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/nikzt-tokendraft-agent-skills/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:19:26.962Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/nikzt-tokendraft-agent-skills/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/nikzt-tokendraft-agent-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 tokendraft and adjacent AI workflows.