quick start
tiroir uses the model context protocol (mcp) to connect with your ai assistants. here's what you need:
- a tiroir account with an api key
- an mcp-compatible ai assistant (chatgpt, claude, cursor, or continue)
- 2 minutes of your time
setup guide
tiroir uses the model context protocol (mcp) to connect with your ai assistants. here's what you need:
{
"mcpServers": {
"tiroir": {
"command": "npx",
"args": [
"-y",
"@tiroir/mcp-client",
"--token",
"YOUR_API_KEY_HERE"
]
}
}
}
YOUR_API_KEY_HERE with your actual api key from the dashboard~/Library/Application Support/Claude/claude_desktop_config.json
- windows: %APPDATA%\Claude\claude_desktop_config.json
- linux: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"tiroir": {
"command": "npx",
"args": [
"-y",
"@tiroir/mcp-client",
"--token",
"YOUR_API_KEY_HERE"
]
}
}
}
YOUR_API_KEY_HERE with your api keycmd+, on mac, ctrl+, on windows/linux){
"mcp.servers": {
"tiroir": {
"command": "npx",
"args": [
"-y",
"@tiroir/mcp-client",
"--token",
"YOUR_API_KEY_HERE"
]
}
}
}
{
"name": "tiroir",
"command": "npx",
"args": [
"-y",
"@tiroir/mcp-client",
"--token",
"YOUR_API_KEY_HERE"
]
}
once tiroir is connected to your ai, you can add data sources:
coming soon! ability to index local file directories.
coming soon! connect your notion workspace.
tiroir can be used in multiple ways:
use our hosted service at tiroir.me:
deploy tiroir on your own server:
run tiroir locally for development:
git clone https://github.com/tiroir/tiroir-platform
cd tiroir-platform
npm install
npm run dev
see the quickstart guide for more.
npx is available in your terminal