Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Zotero Bridge

vanakatvanakat14k downloads

Integrate with Zotero through ZotServer.

Add to Obsidian
  • Overview
  • Scorecard
  • Updates18

Obsidian-Zotero integration plugin that provides APIs for other plugins to connect to Zotero.

Prerequisites

Zotero >= 7

Enable Local API feature in settings: Settings > Advanced > Allow other applications on this computer to communicate with Zotero

Zotero <= 6

Install Zotero addon ZotServer

How to use

Zotero Bridge provides APIs for other plugins to connect to Zotero.

Example of such consumer plugin is Zotero Link.

APIs of this plugin are published with Obsidian plugin api library and can be used anywhere in Obsidian.

Example use of Zotero Bridge APIs in Templater user scripts:

zotero.js user script:

module.exports = async function () {
    const item = await PluginApi.ZoteroBridge.v1().search();
    return (prop) => dotAccess(prop, item.getValues());
}

function dotAccess(str, obj) {
    return str.split('.').reduce((previousValue, currentValue) => previousValue[currentValue], obj);
}

This function can now be used in templates:

(this example is taken from https://github.com/vanakat/zotero-bridge/pull/2)

<%* const zi = await tp.user.zotero() %>


<% zi('firstAuthor.lastName') %><%* if (zi('authors.length')  == 2) { %> and <% zi('authors')[1].lastName %><%* } else if (zi('authors.length') > 2) { %> et al.<%* } %> <% zi('date.year') %> <% zi('title') %>

How to contribute

  1. Fork and clone this repository
  2. Link this directory to your plugins directory: ln -sfn <this-directory> <your-test-vault>/.obsidian/plugins/obsidian-zotero
  3. npm install to install all dependencies
  4. npm run dev will run development server
  5. Reload your Obsidian with test vault open

Please refer to following helpful resources:

  • Unofficial Obsidian API docs
  • Official Obsidian API definition file
  • ZotServer repository for documentation on API
  • Zotero search API code for the most up-to-date search API documentation
  • Zotero 7 Local API announcement

Other Zotero integration plugins

While working on this plugin I found another Zotero integration one called Zotero Integration. If you are looking for a citation/bibliography integration with Zotero it might be a good option for you.

License

MIT

72%
HealthGood
ReviewCaution
About
Expose a standard API for other Obsidian plugins to connect to Zotero, supporting Zotero 7 Local API and older Zotero via ZotServer. Enable plugins and user scripts to search, fetch, and read Zotero item data directly inside Obsidian.
IntegrationsDevelopersResearch
Details
Current version
1.6.6
Last updated
Last year
Created
4 years ago
Updates
18 releases
Downloads
14k
Compatible with
Obsidian 0.12.0+
Platforms
Desktop only
License
MIT
Report bugRequest featureReport plugin
Author
vanakatvanakat
github.com/MunGell
GitHubvanakat
  1. Community
  2. Plugins
  3. Integrations
  4. Zotero Bridge

Related plugins

Local REST API & MCP Server

Unlock your automation needs by interacting with your notes over a secure REST API.

BRAT

Easily install a beta version of a plugin for testing.

Self-hosted LiveSync

Sync vaults securely to self-hosted servers or WEBRTC.

Zotero Integration

Insert and import citations, bibliographies, notes, and PDF annotations from Zotero.

ZotLit

Integrate with Zotero, create literature notes, and insert citations from a Zotero library.

Terminal

Integrate consoles, shells, and terminals.

Global Proxy

Configure network proxies for users in areas with restricted networks.

Git

Integrate Git version control with automatic backup and other advanced features.

Claudian

Embeds Claude Code/Codex as an AI collaborator in your vault. Your vault becomes agent's working directory, giving it full agentic capabilities: file read/write, search, bash commands, and multi-step workflows.

Maps

Adds a map layout to bases so you can display notes as an interactive map view.