Token导航 LogoToken导航TokenDH.com
Volterra Knowledge Engine logo
文档知识未说明官方级别未说明来源级核验

Volterra Knowledge Engine

MCP Server

Volterra知识引擎是一个多源数据集成和处理平台,支持从Notion、SharePoint、HubSpot、Slack和本地文件等五种来源提取文档,生成嵌入并确保GDPR合规性,为AI工具提供知识搜索功能。

工具数

0

提示词数

0

GitHub Stars

0

资源数

0
文档处理TypeScript知识管理

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

duhman

提供方

duhman

最后核验

2026/5/17 20:21

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

详细介绍

Volterra Knowledge Engine

The data backbone powering Volterra's AI tools -- ingesting documents from 5 sources, generating embeddings, and enforcing GDPR compliance so every other platform component can search company knowledge.

TypeScript

Supabase OpenAI

The Problem

Operational knowledge was scattered across five systems -- Notion wikis, SharePoint drives, HubSpot tickets, Slack threads, and local file shares. Support agents re-answered questions that had been solved months earlier. Product and leadership had no way to search across sources. And with EU-based customers, any AI tool touching this data needed automatic PII detection and GDPR-compliant handling.

What This Does

  • Multi-source ingestion -- Pulls documents from Notion, SharePoint, HubSpot, Slack, and local files through a unified processing pipeline with format-specific parsers (PDF, DOCX, XLSX, CSV, HTML, email)
  • Automatic PII detection and GDPR compliance -- Flags or redacts personal data before embedding, classifies document sensitivity, enforces access levels
  • 27 MCP tools for AI agents -- Exposes the entire knowledge base via Model Context Protocol so downstream apps (Semantic Platform, website AI chat) can query it programmatically

Impact

MetricDetail
Ingestion sources5 systems unified into one searchable pipeline
MCP tools shipped27 read-only tools for AI agent access
Ticket categorization90.6% accuracy over 11,800+ tickets (auto-classifier built on this data)
PII handlingAutomatic detection and sensitivity classification
Sync frequencyDaily automated ingestion via pg_cron + Edge Functions

Part of the Volterra Platform

Knowledge Engine is the foundation layer. It generates the embeddings that power the Semantic Platform's 5 GPT apps, feeds the website AI chat via n8n, and provides ticket data for Call Intelligence analysis.

Architecture

graph TB
    CLI[CLI Commands] -->|Ingest| DP[Document Processor]
    DP -->|Parse| Parsers[Format Parsers]
    DP -->|Embed| OAI[OpenAI API]
    DP -->|Store| DB[(PostgreSQL + pgvector)]
    DP -->|Compliance| PII[PII Detector]

    subgraph Sources
        FS[Local Files]
        NO[Notion API]
        SP[SharePoint]
        HS[HubSpot]
        SL[Slack Export]
    end

    Sources -->|Fetch| DP

    subgraph EF[Edge Functions]
        HTS[HubSpot Ticket Sync]
        NPS[Notion Pages Sync]
        SCS[Slack Channel Sync]
        MCP[MCP Server]
    end

    Cron[pg_cron] -->|Scheduled| EF
    EF -->|Read/Write| DB

Key Features

  • Multi-source ingestion — Local files, Notion, SharePoint, HubSpot, Slack with unified processing pipeline
  • Format support — PDF, DOCX, XLSX, CSV, HTML, email, plain text with extensible parser architecture
  • pgvector embeddings — OpenAI text-embedding-3-small (1536d) with HNSW indexes for semantic search
  • GDPR compliance — Automatic PII detection, sensitivity classification, and access level enforcement
  • Automated sync — pg_cron + Edge Functions for daily data ingestion from Notion, HubSpot, Slack
  • MCP server — Read-only Model Context Protocol server exposing 27 tools for AI agent access
  • n8n integration — Workflow management CLI for automating ingestion pipelines

Tech Stack

LayerTechnology
RuntimeNode.js 18+ with TypeScript (ESM)
DatabasePostgreSQL + pgvector (Supabase)
EmbeddingsOpenAI text-embedding-3-small (1536d)
Parserspdfjs-dist, mammoth, xlsx, mailparser
SourcesNotion API, Microsoft Graph, HubSpot API, Slack API
ComplianceCustom PII detector with redact-pii, franc (language)
Schedulingpg_cron + Supabase Edge Functions
CLICommander.js with structured logging (Winston)

Project Structure

src/
├── core/
│   ├── document-processor.ts    # Main orchestration (451 lines)
│   ├── embedding-service.ts     # OpenAI embedding generation
│   └── metadata-inference.ts    # Auto-classification
├── parsers/                     # Format-specific text extraction
│   ├── pdf-parser.ts
│   ├── docx-parser.ts
│   ├── xlsx-parser.ts
│   ├── wod-parser.ts            # Structured deal data extraction
│   └── ...
├── sources/                     # Data source connectors
│   ├── notion-source.ts
│   ├── sharepoint-source.ts
│   ├── hubspot-source.ts
│   └── slack-source.ts
├── compliance/
│   ├── pii-detector.ts          # PII pattern detection
│   └── gdpr-handler.ts          # Sensitivity classification
├── services/
│   ├── n8n-api-client.ts        # n8n REST API client
│   └── vision-service.ts        # GPT-4o image analysis
└── scripts/                     # CLI entry points
supabase/
├── functions/                   # Edge Functions (sync, MCP)
└── migrations/                  # PostgreSQL schema migrations

Getting Started

  1. Install dependencies:
   npm install
  1. Configure environment:
   cp .env.example .env
  1. Set up database (run migrations in Supabase SQL Editor):
   CREATE EXTENSION IF NOT EXISTS vector;
   -- Then apply migration files in chronological order
  1. Ingest documents:
   # Local files
   npm run ingest:file ./documents/

   # From Notion
   npm run ingest:notion

   # From HubSpot
   npm run ingest:hubspot

   # Slack export
   npm run ingest:slack -- --export-path /path/to/export

GDPR Compliance

The system automatically detects PII (emails, phone numbers, SSNs, names) and classifies document sensitivity:

ModeBehavior
FlagDetects and flags PII, stores original content
RedactReplaces PII with placeholders before storing

Documents with detected PII are automatically upgraded to restricted or confidential access levels.

Key Design Decisions

  • Extensible parser architecture — Base class pattern makes adding new format parsers trivial
  • Source-agnostic processing — All sources normalize to the same document interface before embedding
  • HNSW over IVFFlat — Better recall accuracy for semantic search at slightly higher index build cost
  • pg_cron for sync — Database-native scheduling avoids external cron services
  • MCP server — Exposes knowledge base to AI agents via standardized protocol

Built By

Adrian Marten —

目录标签

目录标签

文档处理TypeScript知识管理多源数据集成本地部署GDPR合规AI知识搜索自动化同步

接入字段

传输方式(transport,传输协议)

未说明

鉴权方式(authType,认证方式)

none

部署方式(deploymentType,部署类型)

remote-capable

工具数量(toolCount,工具数)

0

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

未说明noneremote-capable

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

仍需确认:installCommand

来源信息

继续浏览同类 MCP