Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions static/.well-known/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "Bacalhau Documentation",
"description": "MCP server for Bacalhau distributed compute documentation - CLI reference, API docs, examples, and tutorials",
"version": "1.0.0",
"server": {
"url": "https://mcp.expanso.io",
"transport": "https"
},
"capabilities": {
"tools": true,
"resources": true
},
"tools": [
{
"name": "search_bacalhau_docs",
"description": "Search Bacalhau documentation for answers about distributed compute, CLI commands, and API usage"
},
{
"name": "get_cli_help",
"description": "Get detailed help for Bacalhau CLI commands"
},
{
"name": "get_example",
"description": "Get code examples for running jobs with Bacalhau"
}
],
"documentation": {
"main": "https://docs.bacalhau.org",
"github": "https://github.com/bacalhau-project/bacalhau",
"llms_txt": "https://docs.bacalhau.org/llms.txt"
},
"contact": {
"discord": "https://bit.ly/bacalhau-project-slack",
"github": "https://github.com/bacalhau-project/bacalhau/issues"
}
}
43 changes: 43 additions & 0 deletions static/llms.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Bacalhau Documentation

> Bacalhau is an open-source distributed compute platform that enables processing data where it lives. Run Docker containers and WebAssembly across edge, on-premises, and multi-cloud environments.

## Quick Start

```bash
# Install Bacalhau
curl -sL https://get.bacalhau.org/install.sh | bash

# Run your first job
bacalhau docker run ubuntu echo "Hello World"

# Check job status
bacalhau job list
```

## Documentation Sections

- [Getting Started](/llms/getting-started.txt): Installation, quickstart, first jobs
- [CLI Reference](/llms/cli.txt): All bacalhau commands and options
- [API Reference](/llms/api.txt): REST API documentation
- [Examples](/llms/examples.txt): Code examples and tutorials
- [Concepts](/llms/concepts.txt): Architecture and core concepts

## Key Concepts

- **Compute Over Data**: Run compute where data lives, not the other way around
- **Docker Support**: Run existing Docker containers without modification
- **WASM Support**: Lightweight WebAssembly execution for edge devices
- **Distributed**: Scale from laptop to thousands of nodes
- **Open Source**: Apache 2.0 licensed, community-driven

## Resources

- GitHub: https://github.com/bacalhau-project/bacalhau
- Discord: https://bit.ly/bacalhau-project-slack
- Website: https://bacalhau.org

## Related

- [Expanso Platform](https://docs.expanso.io/llms.txt): Enterprise features
- [Examples](https://examples.expanso.io/llms.txt): Code examples
Loading
Loading