Fulcra Context
Visit ProjectAccess personal health, workouts, sleep, location, and more via Fulcra Context—privately.
Visit ProjectCategory
Tags
What is Fulcra Context?
Fulcra Context is an MCP (Model Context Protocol) server that provides secure access to personal health, workouts, sleep, location, and other personal data via the Fulcra API. It ensures privacy while allowing users to retrieve and manage their contextual data.
How to use Fulcra Context?
- Remote Connection:
- Use a proxy like Claude for Desktop by adding the server configuration to access the public instance at
https://mcp.fulcradynamics.com/mcp
.
{ "mcpServers": { "fulcra_context": { "command": "npx", "args": ["-y", "mcp-remote", "https://mcp.fulcradynamics.com/mcp"] } } }
- Use a proxy like Claude for Desktop by adding the server configuration to access the public instance at
- Local Connection:
- Run the server locally using
uvx
:
{ "mcpServers": { "fulcra_context": { "command": "uvx", "args": ["fulcra-context-mcp@latest"] } } }
- Run the server locally using
Key features of Fulcra Context?
- Secure access to personal health, fitness, sleep, and location data
- Privacy-focused OAuth2 handling to protect tokens
- Remote and local server usage flexibility
- Integration with Model Context Protocol (MCP)
- Debugging support via MCP Inspector and mcp-remote tools
Use cases of Fulcra Context?
- Health Monitoring: Securely track and analyze personal health metrics.
- Fitness Tracking: Manage workout data and progress privately.
- Sleep Analysis: Access and monitor sleep patterns discretely.
- Location Services: Retrieve location-based data securely.
- Developer Integrations: Build applications that require personal context data with strong privacy guarantees.
FAQ from Fulcra Context?
-
Is Fulcra Context free to use?
The project is open-source, and the public instance is available for use. Self-hosting is also an option.
-
How private is my data with Fulcra Context?
Fulcra Context is designed with privacy in mind, ensuring that tokens and personal data are securely managed.
-
Can I contribute to Fulcra Context?
Yes! Contributions are welcome via GitHub, Discord, or by contacting support@fulcradynamics.com.
fulcra-context-mcp: An MCP server to access your Fulcra Context data
This is an MCP server that provides tools and resources to call the Fulcra API using fulcra-api
.
There is a public instance of this server running at https://mcp.fulcradynamics.com/mcp
. See https://fulcradynamics.github.io/developer-docs/mcp-server/ to get started quickly. This repo is primarily for users who need to run the server locally, want to see under the hood, or want to help contribute.
When run on its own (or when FULCRA_ENVIRONMENT
is set to stdio
), it acts as a local MCP server using the stdio transport. Otherwise, it acts as a remote server using the Streamble HTTP transport. It handles the OAuth2 callback, but doesn't leak the exchanged tokens to MCP clients. Instead, it maintains a mapping table and runs its own OAuth2 service between MCP clients.
Remote Connection using Proxy
Claude for Desktop config:
{
"mcpServers": {
"fulcra_context": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.fulcradynamics.com/mcp"
]
}
}
}
Local Connection
Similar config using uvx
:
{
"mcpServers": {
"fulcra_context": {
"command": "uvx",
"args": [
"fulcra-context-mcp@latest"
]
}
}
}
Debugging
- Both the MCP Inspector and mcp-remote tools can be useful in debugging.
Bugs / Feature Requests
Please feel free to reach out via the GitHub repo for this project or join our Discord to reach out directly. Email also works (support@fulcradynamics.com
).