Skip to content

Knotto

Personal knowledge graph for people, organizations, locations, and notes — with relationship linking. MCP-first.

Knotto is a personal knowledge graph. It stores structured records about people, organizations, locations, and notes — and lets you connect them into a web of relationships. Think of it as your personal CRM + second brain, queryable by your AI agent.

Key concepts:

  • Person — a contact with fields like name, email, company, role, notes
  • Organization — a company, team, or group
  • Location — a place that can be linked to people and organizations
  • Note — freeform text, linkable to any person or organization
  • Relationship — a typed link between any two entities (person ↔ org, note ↔ person, etc.)

No CLI yet — access is exclusively via MCP or the web app.

Generate a token at app.knotto.iopho.com → Settings → Integrations → CLI Token, then:

{
"mcpServers": {
"knotto": {
"command": "npx",
"args": ["-y", "knotto-mcp"],
"env": {
"KNOTTO_TOKEN": "rdk_your_token_here"
}
}
}
}
ToolDescription
knotto_list_peopleList all people in your graph
knotto_get_personGet full details for a person by ID
knotto_create_personCreate a new person record
knotto_update_personUpdate person fields
knotto_delete_personDelete a person record
knotto_search_peopleSearch by name, email, company, or any field
ToolDescription
knotto_list_organizationsList all organizations
knotto_get_organizationGet full organization details
knotto_create_organizationCreate a new organization
knotto_update_organizationUpdate organization fields
knotto_delete_organizationDelete an organization
ToolDescription
knotto_list_notesList all notes
knotto_get_noteGet full note content
knotto_create_noteCreate a new note
knotto_update_noteUpdate note content or title
knotto_delete_noteDelete a note
ToolDescription
knotto_list_locationsList all locations
knotto_create_locationCreate a new location
knotto_update_locationUpdate location details
knotto_delete_locationDelete a location

Link and unlink entities to build your knowledge graph:

ToolDescription
knotto_link_person_to_orgLink a person to an organization
knotto_unlink_person_from_orgRemove person ↔ organization link
knotto_link_note_to_personAttach a note to a person
knotto_unlink_note_from_personDetach note from person
knotto_link_note_to_organizationAttach a note to an organization
knotto_unlink_note_from_organizationDetach note from organization
knotto_link_person_to_locationLink a person to a location
knotto_unlink_person_from_locationRemove person ↔ location link
knotto_link_org_to_locationLink an organization to a location
knotto_unlink_org_from_locationRemove organization ↔ location link

PAT Tokens for non-interactive setup