MCP.so
Sign In
Servers

Forge

@VoxellInc

Forge is Voxell's hosted text-embedding API. This MCP server exposes two tools — embed (turn text into vectors) and list_models — so any MCP-compatible agent can generate embeddings for semantic search, RAG, clustering, and dedup.

Overview

What is Forge?

Forge is an MCP (Model Context Protocol) server for Voxell's hosted text-embedding API. It exposes two tools (embed and list_models) to any MCP client, including Claude, Cursor, Cline, Windsurf, and VS Code. The server is stateless; Voxell does not store the text sent or the vectors returned — only usage metadata (token counts) for billing.

How to use Forge?

Install via one-click links for Cursor or VS Code, or with a CLI command for Claude Code. Configure your MCP client with a mcpServers block that runs npx -y @voxell/forge-mcp and sets the FORGE_API_KEY environment variable. Requires Node.js ≥ 18 and a Forge API key from https://dash.voxell.ai.

Key features of Forge

  • Provides embed (text to vectors) and list_models tools.
  • Supports Matryoshka (MRL) dimension truncation for smaller vectors.
  • Runs the Qwen3-Embedding model family (turbo, pro, ultra).
  • Low latency (Go + CUDA engine), zero-trust, per-key auth.
  • No storage of text or vectors – only usage metadata recorded.
  • Also offers an OpenAI-compatible API for seamless migration.

Use cases of Forge

  • Add semantic search by embedding documents and queries separately.
  • Build RAG pipelines by embedding a knowledge base and retrieving relevant chunks.
  • Find similar or duplicate text by comparing vector embeddings.
  • Cluster or classify text by embedding batches then applying ML algorithms.
  • Shrink vector storage by truncating dimensions via Matryoshka.

FAQ from Forge

What does Forge do vs other MCP servers?

Forge is strictly an embedding server – it does not provide storage, search, or RAG. Those are separate products.

What are the runtime requirements?

Node.js version 18 or higher (tested on 20) and a valid Forge API key. New accounts start with 10M free tokens, no credit card required.

Where does my data go?

The server is stateless. Voxell does not store the text you send or the vectors it returns. Only usage metadata (token counts) is recorded for billing.

What authentication does Forge use?

Authentication is via an API key set in the FORGE_API_KEY environment variable. mTLS is available for extra security.

What transport does Forge use?

Forge runs as a standard MCP server, launched via npx. It connects over standard I/O (stdio) to the MCP client.

Tags

More from Memory & Knowledge