MCP server for generating Forge text embeddings with configurable models, dimensions, and query or document input types.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag โ we're steadily working through the catalog.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Forge MCP.
embedCallable MCP tool function
list_modelsLists the available models and their dimensions.
An MCP server for Forge โ Voxell's hosted text-embedding API. It exposes Forge to any MCP client (Claude, Cursor, Cline, Windsurf, VS Code, โฆ) as two tools:
embed โ turn text into vectorslist_models โ list available models and their dimensionsYou bring a Forge API key. The server is stateless, and Voxell does not store the text you send or the vectors it returns โ only usage metadata (token counts) is recorded, for billing. It does embeddings only โ no storage, no search, no RAG. Those are different products.
One-click install in your editor (then replace your-key-here with a real key from
dash.voxell.ai):
Claude Code โ one command:
Any other client (Claude Desktop, Cline, Windsurf, Zed, โฆ) uses the standard mcpServers
block โ see Use it below.
ultra is the 8B โ ~75+
average task score on MTEB, currently #4 on MTEB (English), and the top usable model (the
three ranked above it are research-only). turbo (0.6B) is the fast/cheap default. Pick your
quality/cost point.dim to truncate (re-normalized) for ~4ร smaller, cheaper vectors.input_type: "document" and each query
with input_type: "query", then rank by cosine similarity.dim to truncate (Matryoshka) and trade a little accuracy
for smaller, cheaper vectors.embed tool โ no separate script.Most MCP clients run it on demand with npx. Add this to your client's MCP config:
(Cursor, Claude Desktop, Cline, Windsurf, and VS Code all use this mcpServers shape.)
embed| arg | type | default | notes |
|---|---|---|---|
input | string or string[] | โ | text(s) to embed (required) |
model | string | turbo | turbo (1024-d), pro (2560-d), ultra (4096-d) |
dim | number | model default | truncate to N dimensions (Matryoshka) โ works on every model |
input_type | "query" | "document" | document | use query for search queries |
Returns the vectors plus the model, dimension, and token count.
Default is turbo โ the one you probably want. pro/ultra trade size and speed for more
dimensions.
list_modelsLists the available models and their dimensions.
| env | required | default |
|---|---|---|
FORGE_API_KEY | yes | โ |
FORGE_BASE_URL | no | https://api.voxell.ai |
Forge speaks the OpenAI embeddings API. Point any OpenAI client at Forge โ no code change, and your existing vector dimensions are preserved:
Your OpenAI model names map to a matching-dimension Forge tier (text-embedding-3-small/
ada-002 โ 1536-d, text-embedding-3-large โ 3072-d), so existing vector stores slot in
unchanged. Or address Forge tiers directly โ turbo | pro | ultra. Also supports dimensions
(Matryoshka, re-normalized) and encoding_format: "base64".
It's an upgrade on every path. Forge's smallest tier (turbo, Qwen3-Embedding-0.6B)
outranks OpenAI's largest embedding model (text-embedding-3-large) on MTEB โ so there's no
drop-in that lands worse. ultra (Qwen3-Embedding-8B, ~75+ average task score, #4 on MTEB English)
is a different league.
Why re-embedding onto Forge is worth it. Embedding is a one-way door: whatever an encoder discards at write time is gone โ no reranker, longer prompt, or bigger LLM downstream reconstructs what the vectors never captured. The model you embed with sets the ceiling on everything above it. Re-embed once onto a higher-ranked engine and that ceiling rises โ permanently.
MIT ยฉ Voxell, Inc.
Factual signals from GitHub, npm, and our automated checks โ not a rating.
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/voxellinc-forge-mcp)<a href="https://allmcps.com/mcp/voxellinc-forge-mcp"><img src="https://allmcps.com/api/badge/voxellinc-forge-mcp?style=directory" alt="Forge MCP on AllMCPs" /></a>