Weather
一个面向 Data & APIs 场景的 Agent 技能。原始说明:Get current weather and forecasts (no API key required).
一个面向 Data & APIs 场景的 Agent 技能。原始说明:Access user-consented Fulcra context data including biometrics, sleep, activity, calendar, location, and the Fulcra metric catalog through the hosted MCP ser...
name: fulcra-context
description: Access user-consented Fulcra context data including biometrics, sleep, activity, calendar, location, and the Fulcra metric catalog through the hosted MCP server or Fulcra CLI. Use for bounded read/context workflows only; use fulcra-annotations for writes.
homepage: https://fulcradynamics.com
Fulcra gives agents user-consented access to personal context such as biometrics, sleep, activity, calendar, location, and metric catalog data.
This ClawHub skill is intentionally docs-first. It does not ship executable helper scripts, install hooks, background jobs, transcript processors, weather enrichment, export tools, or arbitrary CLI wrappers. Use Fulcra's hosted MCP server or the Fulcra CLI directly, and keep every read bounded to the user's current request.
Use the companion fulcra-annotations skill when an agent needs to create annotation definitions or record user-approved events back to Fulcra.
Use Fulcra's hosted MCP server at:
https://mcp.fulcradynamics.com/mcp
Claude Desktop settings:
{
"mcpServers": {
"fulcra_context": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.fulcradynamics.com/mcp"]
}
}
}
Local stdio server option:
{
"mcpServers": {
"fulcra_context": {
"command": "uvx",
"args": ["fulcra-context-mcp"]
}
}
}
Open source MCP server: <https://github.com/fulcradynamics/fulcra-context-mcp>
Use the Fulcra CLI for repeatable automation:
uv tool run fulcra-api --help
Authenticate once:
uv tool run fulcra-api auth login
Remote/chat auth rules:
uv tool run fulcra-api user-info
Fulcra accounts can be created through the CLI and include 5 GB of storage free forever. Users who want phone-collected biometrics, location, calendar, and other context can install the Context iOS app, sign in with the same account, and sync data into that storage.
Use these bounded read commands as patterns. Inspect uv tool run fulcra-api --help if the CLI version differs.
uv tool run fulcra-api catalog
Use this to discover available data types. Do not query every metric unless the user asks for a broad inventory.
uv tool run fulcra-api get-records HeartRate "2 hours"
Summarize aggregates or notable patterns. Avoid dumping raw samples unless the user explicitly asks.
uv tool run fulcra-api sleep-stages "12 hours"
uv tool run fulcra-api sleep-cycles "1 week"
Use sleep context to adjust briefings or recovery advice. Make clear when data is missing or stale.
uv tool run fulcra-api apple-workouts "1 week"
Keep analysis scoped to activity, recovery, or scheduling questions the user actually asked.
uv tool run fulcra-api calendar-events "1 day"
Before using calendar data in a group chat, public artifact, or shared report, ask for explicit permission. Calendar entries may include names, locations, attendees, notes, and meeting links.
uv tool run fulcra-api location-at-time "2026-05-05T12:00:00Z"
Use location only when necessary for the requested context. Do not send coordinates or place history to third-party services from this skill.
Ask an explicit yes/no question before any workflow that would:
For public examples, demos, screenshots, videos, tests, and docs, use synthetic data unless the user explicitly approves real data for that exact artifact.
fulcra-context: read Fulcra context and analyze user-consented health, activity, calendar, location, and catalog data.fulcra-annotations: create annotation definitions and record user-approved events.Install the companion write-focused skill from ClawHub when needed:
Install the fulcra-annotations skill from ClawHub
If a command returns no data:
uv tool run fulcra-api user-info.