Forge
@VoxellInc
About Forge
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.
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"forge": {
"command": "npx",
"args": [
"-y",
"@voxell/forge-mcp"
],
"env": {
"FORGE_API_KEY": "your-forge-api-key"
}
}
}
}Tools
2Generate vector embeddings for one or more texts with Forge (Voxell's hosted embedding API). Use it to turn text into vectors for semantic search, RAG, clustering, or similarity. Set input_type='query' for search queries and 'document' for content you index. Choose model by quality/cost: turbo (1024d, fast, default) -> pro (2560d) -> ultra (4096d, #4 on MTEB English, top usable). Optionally set dim to truncate (Matryoshka, re-normalized).
List the available Forge embedding models and their dimensions. Call this to pick a model before embedding.
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) andlist_modelstools. - 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.
Frequently asked questions
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.
Basic information
More Memory & Knowledge MCP servers

Memory
modelcontextprotocolModel Context Protocol Servers
Notion MCP Server
suekouA Model Context Protocol server for connecting Notion to MCP-compatible clients
MCP server for Obsidian
MarkusPfundsteinMCP server that interacts with Obsidian via the Obsidian rest API community plugin
Context Portal MCP (ConPort)
GreatScottyMacContext Portal (ConPort): A memory bank MCP server building a project-specific knowledge graph to supercharge AI assistants. Enables powerful Retrieval Augmented Generation (RAG) for context-aware development in your IDE.

Orcha
westonhancockOrcha is a unified context layer for AI tools and agents. It stores and indexes and exposes organizational, team, or individual knowledge. Files, structured databases, and connected sources live in one workspace, and age
Comments