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.
「メモリとナレッジ」の他のコンテンツ
Obsidian MCP Server
StevenStavrakisA simple MCP server for Obsidian
JupyterMCP - Jupyter Notebook Model Context Protocol Integration
jjsantos01A Model Context Protocol (MCP) for Jupyter Notebook
Context7 MCP - Up-to-date Docs For Any Cursor Prompt
upstashContext7 Platform -- Up-to-date code documentation for LLMs and AI code editors
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 server for Obsidian
MarkusPfundsteinMCP server that interacts with Obsidian via the Obsidian rest API community plugin
コメント