<p align="center">
<a href="https://github.com/statespace-tech/toolfront">
<img src="https://raw.githubusercontent.com/statespace-tech/toolfront/main/docs/assets/images/favicon.svg" width="150" alt="ToolFront">
</a>
</p>
<div align="center">
# ToolFront
**Turn your data into shareable LLM apps in minutes. All in pure Markdown. Zero boilerplate.**
[](https://github.com/statespace-tech/toolfront/actions/workflows/test.yml)
[](https://www.python.org/downloads/)
[](https://pypi.org/project/toolfront/)
[](https://github.com/statespace-tech/toolfront/blob/main/LICENSE)
[](https://discord.gg/rRyM7zkZTf)
[](https://x.com/statespace_tech)
</div>
---
**Documentation: [docs.toolfront.ai](http://docs.toolfront.ai/)**
**Source code: [https://github.com/statespace-tech/toolfront](https://github.com/statespace-tech/toolfront)**
---
_ToolFront is a declarative framework for building modular LLM applications in Markdown._
## Example
### Create it
Start with one file: `README.md`
```yaml
---
tools:
- [date]
---
# Instructions
- Run `date` to check today's date
```
### Serve it
Run your app locally:
```bash
toolfront serve .
```
> **Note**: Runs on `http://127.0.0.1:8000`
### Ask it
Include the app URL in your prompts:
<details open>
<summary><b>Claude Code</b></summary>
```bash
claude "Get today's date from http://127.0.0.1:8000"
```
</details>
<details>
<summary><b>GitHub Copilot</b></summary>
```bash
copilot "Get today's date from http://127.0.0.1:8000"
```
</details>
<details>
<summary><b>Codex</b></summary>
```bash
codex "Get today's date from http://127.0.0.1:8000"
```
</details>
For custom agents, add an HTTP request tool:
<details>
<summary><b>Python</b></summary>
```python
import subprocess
@tool
def curl_tool(url: str, args: list[str]) -> str:
"""Execute curl commands to interact with Statespace apps."""
result = subprocess.run(
['curl', *args, url],
capture_output=True,
text=True
)
return result.stdout
```
</details>
<details>
<summary><b>TypeScript</b></summary>
```typescript
import { execFileSync } from 'child_process';
/**
* Execute curl commands to interact with Statespace apps.
*/
function curlTool(url: string, args: string[]): string {
const result = execFileSync('curl', [...args, url], {
encoding: 'utf-8'
});
return result.toString();
}
```
</details>
<details>
<summary><b>Rust</b></summary>
```rust
use std::process::Command;
/// Execute curl commands to interact with HTTP endpoints.
fn curl_tool(url: &str, args: Vec<&str>) -> String {
let output = Command::new("curl")
.args(&args)
.arg(url)
.output()
.unwrap();
String::from_utf8_lossy(&output.stdout).to_string()
}
```
</details>
## Complex example
### Upgrade it
Your app can grow into a full project:
```bash
project/
├── README.md
├── data/
│ ├── log1.txt
│ ├── log2.txt
│ └── log3.txt
└── src/
├── agentic_rag.md
├── text2sql.md
└── vector_search.md
3 directories, 9 files
```
Update `README.md` with CLI tools to progressively discover and read other files:
```yaml
---
tools:
- [date]
- [ls]
- [cat]
---
# Instructions
- Run `date` to check today's date
- Use `ls` and `cat` to discover and read other files
```
### Compose it
Add pages and CLI tools for different workflows:
<details open>
<summary><b>Vector Search</b></summary>
```yaml
---
tools:
- [curl, -X, POST, https://host.pinecone.io/records/namespaces/user/search]
---
# Vector search instructions:
- Query documents with your vector database API
```
> **Note**: replace the API with your own (e.g., Pinecone, Weaviate, Qdrant)
</details>
<details>
<summary><b>Text-to-SQL</b></summary>
```yaml
---
tools:
- [psql, -U, $USER, -d, $DB, -c, { regex: "^SELECT\b.*" }]
---
# Text-to-SQL instructions:
- Use `psql` for read-only PostgreSQL queries
```
> **Note**: use your own database CLI (e.g., `mysql`, `sqlite3`, `mongosh`).
</details>
<details>
<summary><b>Agentic RAG</b></summary>
```yaml
---
tools:
- [grep, -r, -i, { }, ../data/]
---
# Document search instructions:
- Use `grep` to search documents in `../data/`
```
> **Note**: apps can include any file type (e.g. `.csv`, `.sqlite`, `.json`)
</details>
### Deploy it
Create a free [Statespace account](https://statespace.com/) to deploy authenticated private apps:
```bash
toolfront deploy . --private
```
Alternatively, share public apps with the community:
```bash
toolfront deploy . --public
```
> **Note** Statespace gives you app URLs you can paste in prompts and instructions.
## Installation
Install `toolfront` with your favorite PyPI package manager:
<details open>
<summary><b>pip</b></summary>
```bash
pip install toolfront
```
</details>
<details>
<summary><b>uv</b></summary>
```bash
uv add toolfront
```
</details>
<details>
<summary><b>poetry</b></summary>
```bash
poetry add toolfront
```
</details>
## Community & Contributing
- **Discord**: Join our [community server](https://discord.gg/rRyM7zkZTf) for real-time help and discussions
- **X**: Follow us [@statespace_tech](https://x.com/statespace_tech) for updates and news
- **Issues**: Report bugs or request features on [GitHub Issues](https://github.com/statespace-tech/toolfront/issues)
## License
This project is licensed under the terms of the MIT license.