v0.1.0

Connected Note-Taking

Tarot is an Obsidian-inspired note-taking app with wikilinks, backlinks, graph view, and MCP server integration for AI agents.

Getting Started with Tarot
#getting-started #guide

Features

Wikilinks

Link notes with double-bracket syntax and autocomplete.

Backlinks

See which notes reference your current note with context snippets.

Graph View

Visualize connections between notes in an interactive force-directed graph.

Full-Text Search

Search across all notes instantly with keyboard shortcut.

MCP Server

Access notes from AI agents via the Model Context Protocol.

API Keys

Generate API keys for programmatic access with built-in auth.

MCP Protocol

AI Agent Ready

Tarot ships with a built-in MCP server. Connect AI agents directly to your notes.

Hermes Config
mcp_servers:
  tarot:
    command: node
    args: ["/path/to/tarot/mcp-server/build/index.js"]
    env:
      TAROT_API_KEY: "tarot_your_api_key_here"

Available Tools

  • list_notes List all notes
  • read_note Read a note by ID
  • create_note Create a new note
  • update_note Update a note
  • delete_note Soft-delete a note
  • search_notes Full-text search
  • get_graph Get graph connections
  • list_folders List all folders
MCP Docs

REST API

Full CRUD access to notes via HTTP for automations and integrations.

Example: Create a note
curl -X POST https://api.parlmarket.xyz/notes \
  -H "Authorization: Bearer tarot_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"title": "My Note", "content": "Hello Tarot", "folder": "My Notes", "tags": ["demo"]}'
GET/notesList notes
GET/notes/:idRead note
POST/notesCreate note
PUT/notes/:idUpdate note
DELETE/notes/:idDelete note
GET/search?q=Search notes
GET/graphGraph data
API Docs

Start Connecting Your Notes

Create your account and start writing, it only takes a minute.

Get Started