
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
@original-land/n8n-nodes-embedding
Advanced tools
A powerful custom n8n node that allows you to generate embeddings using your own embedding server. Perfect for RAG (Retrieval-Augmented Generation) workflows, semantic search, and AI applications.
ai_embedding connection typenpm install @original-land/n8n-nodes-embedding
git clone https://github.com/noku-team/n8n-original-embedding.git
cd n8n-original-embedding
pnpm install
pnpm build
Create new Embedding Server API credentials with:
https://your-server.com/api/v1/openai-compatible/embeddings
query, document)={{ $json.text }})Input: {
"text": "This is a sample text to embed"
}
Output: {
"text": "This is a sample text to embed",
"embedding": [0.1, 0.2, -0.3, ...],
"model": "your-model",
"usage": { "prompt_tokens": 7, "total_tokens": 7 }
}
graph LR
A[Document Loader] --> B[Original Embedding Node]
B --> C[Vector Store]
D[User Query] --> E[Original Embedding Node]
E --> F[AI Retriever]
C --> F
F --> G[RAG Chain]
H[LLM Node] --> G
G --> I[Response]
Document Processing:
Document → Original Embedding Node → Vector Store (Pinecone/Weaviate)
Query Processing:
User Query → Original Embedding Node → AI Retriever → RAG Chain → LLM → Response
// Node parameters
{
"endpoint": "https://api.yourserver.com/v1/embeddings",
"model": "text-embedding-3-large",
"inputText": "={{ $json.content }}",
"batchProcessing": true
}
// Credential configuration
{
"authMethod": "both",
"apiKey": "your-secret-key",
"username": "your-username",
"password": "your-password"
}
ai_embedding typegit clone https://github.com/noku-team/n8n-original-embedding.git
cd n8n-original-embedding
pnpm install
pnpm build
pnpm dev
pnpm lint # Check for issues
pnpm lintfix # Auto-fix issues
Your embedding server should be OpenAI-compatible and support:
POST /your-endpoint
{
"input": "text to embed",
"model": "your-model"
}
{
"object": "list",
"data": [{
"object": "embedding",
"index": 0,
"embedding": [0.1, 0.2, -0.3, ...]
}],
"model": "your-model",
"usage": {
"prompt_tokens": 5,
"total_tokens": 5
}
}
The node automatically handles:
Authorization: your-api-key (API Key mode)Authorization: Basic base64(username:password) (Basic Auth mode)git checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)See CHANGELOG.md for version history.
This project is licensed under the MIT License - see the LICENSE.md file for details.
n8n embedding ai rag vector-search custom-node openai machine-learning semantic-search
Made with ❤️ by Original.land
FAQs
Custom original.land embedding node for n8n
The npm package @original-land/n8n-nodes-embedding receives a total of 57 weekly downloads. As such, @original-land/n8n-nodes-embedding popularity was classified as not popular.
We found that @original-land/n8n-nodes-embedding demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.