Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

VoxellInc/forge-mcp MCP server](https://glama.ai/mcp/servers/VoxellInc/forge-mcp/badges/score.svg)](https://glama.ai/mcp/servers/VoxellInc/forge-mcp) πŸŽ–οΈ πŸ“‡ ☁️ - Official MCP server for Forge, Voxell's hosted text-embedding API.

README.md

@voxell/forge-mcp

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 vectors
  • list_models β€” list available models and their dimensions

You 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.

Quick install

One-click install in your editor (then replace your-key-here with a real key from dash.voxell.ai):

![Add to Cursor](cursor://anysphere.cursor-deeplink/mcp/install?name=forge&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkB2b3hlbGwvZm9yZ2UtbWNwIl0sImVudiI6eyJGT1JHRV9BUElfS0VZIjoieW91ci1rZXktaGVyZSJ9fQ==) ![Install in VS Code](vscode:mcp/install?%7B%22name%22%3A%22forge%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40voxell%2Fforge-mcp%22%5D%2C%22env%22%3A%7B%22FORGE_API_KEY%22%3A%22your-key-here%22%7D%7D)

Claude Code β€” one command:

claude mcp add forge -e FORGE_API_KEY=your-key-here -- npx -y @voxell/forge-mcp

Any other client (Claude Desktop, Cline, Windsurf, Zed, …) uses the standard mcpServers block β€” see Use it below.

Why Forge

  • Quality you can dial. Forge runs the Qwen3-Embedding family; 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.

  • Matryoshka (MRL). Set dim to truncate (re-normalized) for ~4Γ— smaller, cheaper vectors.
  • Low latency (Go + CUDA engine), zero-trust (per-key auth; mTLS available), and **free to

start** (10M tokens, no card β€” dash.voxell.ai; more at voxell.ai/forge).

What you can do with it

  • Add semantic search β€” embed your documents with input_type: "document" and each query

with input_type: "query", then rank by cosine similarity.

  • Build RAG β€” embed a knowledge base, store the vectors, and retrieve the closest chunks to

ground an LLM.

  • Find similar or duplicate text β€” embed two texts and compare their vectors.
  • Cluster or classify β€” embed a batch, then cluster or train a classifier on the vectors.
  • Shrink vector storage β€” set dim to truncate (Matryoshka) and trade a little accuracy

for smaller, cheaper vectors.

  • Straight from your editor β€” ask your AI agent (Cursor, Claude, …) to embed a snippet, a

batch, or a file via the embed tool β€” no separate script.

Requirements

  • Node.js β‰₯ 18 (tested on 20)
  • A Forge API key β€” create one at https://dash.voxell.ai. New accounts start with 10M free

tokens, no credit card.

Use it

Most MCP clients run it on demand with npx. Add this to your client's MCP config:

{
  "mcpServers": {
    "forge": {
      "command": "npx",
      "args": ["-y", "@voxell/forge-mcp"],
      "env": { "FORGE_API_KEY": "your-key-here" }
    }
  }
}

(Cursor, Claude Desktop, Cline, Windsurf, and VS Code all use this mcpServers shape.)

Tools

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_models

Lists the available models and their dimensions.

Configuration

| env | required | default | |-----|----------|---------| | FORGE_API_KEY | yes | β€” | | FORGE_BASE_URL | no | https://api.voxell.ai |

Beyond MCP: OpenAI-compatible API

Forge speaks the OpenAI embeddings API. Point any OpenAI client at Forge β€” no code change, and your existing vector dimensions are preserved:

from openai import OpenAI

client = OpenAI(base_url="https://api.voxell.ai/v1", api_key="your-forge-key")
# the exact call you already make β€” now on a higher-ranked engine:
client.embeddings.create(model="text-embedding-3-large", input=["hello world"])  # -> 3072-d

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.

License

MIT Β© Voxell, Inc.

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.