Forge
@VoxellInc
关于 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.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"forge": {
"command": "npx",
"args": [
"-y",
"@voxell/forge-mcp"
],
"env": {
"FORGE_API_KEY": "your-forge-api-key"
}
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
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.
记忆与知识 分类下的更多 MCP 服务器
Semantic Scholar MCP Server
YUZongminA FastMCP server implementation for the Semantic Scholar API, providing comprehensive access to academic paper data, author information, and citation networks.
MCP Apple Notes
RafalWilinskiTalk with your notes in Claude. RAG over your Apple Notes using Model Context Protocol.
Obsidian MCP Server
StevenStavrakisA simple MCP server for Obsidian
Notion MCP Server
awkoyNotion MCP server for Claude, Cursor, ChatGPT & Claude Desktop. Connect AI agents to Notion via Model Context Protocol — pages, databases, blocks, comments, files.
Rust Docs MCP Server
Govcraft🦀 Prevents outdated Rust code suggestions from AI assistants. This MCP server fetches current crate docs, uses embeddings/LLMs, and provides accurate context via a tool call.
评论