Privane Tool Hub

Privane Tool Hub

The Privane Tool Hub is the ecosystem marketplace for Managed Connectors and Local Tools.

It functions as the “npm for AI tools”, allowing developers to inject powerful, fully-authenticated capabilities into their local LLMs with a single line of code.

Total Executions This Month
12,431,892
Active Connectors
142
G

GitHub

Developer
Managed ExecutionOAuth Required
const github = tools.get("github");
S

Slack

Communication
Managed ExecutionOAuth Required
const slack = tools.get("slack");
G

Gmail

Productivity
Managed ExecutionOAuth Required
const gmail = tools.get("gmail");
N

Notion

Productivity
Managed ExecutionOAuth Required
const notion = tools.get("notion");
B

Browser

Web
Managed ExecutionAPI Key
const browser = tools.get("browser");
P

PostgreSQL

Database
Managed ExecutionCredentials
const postgresql = tools.get("postgresql");
L

Local FileSystem

System
Local ExecutionNo Auth
const localfilesystem = tools.get("localfilesystem");
L

Local Shell

System
Local ExecutionNo Auth
const localshell = tools.get("localshell");

1-Click Execution

The entire philosophy of the Tool Hub is built around the 1-click execution pattern. We handle the OAuth scopes, webhook configs, and permission schemas so you don’t have to.

import { PrivaneTools } from '@privane/tools';
 
const tools = new PrivaneTools({ apiKey: process.env.PRIVANE_API_KEY });
 
// The agent is now securely authenticated to read Slack messages
const slack = tools.get("slack");