Skald MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Skald MCP ServerSearch Skald for memos about our API design"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Skald MCP Server ðŸ§
Chat with your Skald knowledge base, add and update new knowledge, and search through memos.
Features
The Skald MCP server provides seven powerful tools:
1. skald-chat
Ask Skald questions about your knowledge base in natural language with optional filters to narrow search context.
2. skald-search
Search through your memos using multiple methods with optional filters:
Semantic search (
chunk_vector_search) - Find relevant content by meaningTitle contains (
title_contains) - Case-insensitive substring matchingTitle starts with (
title_startswith) - Case-insensitive prefix matching
3. skald-create-memo
Create new memos that are automatically processed, summarized, tagged, chunked, and indexed for search.
4. skald-get-memo
Retrieve a memo by UUID or client reference ID with full content, summary, tags, and chunks.
5. skald-update-memo
Update an existing memo by UUID or client reference ID. If content is updated, the memo will be reprocessed.
6. skald-delete-memo
Permanently delete a memo by UUID or client reference ID along with all associated data.
7. skald-generate
Generate documents based on prompts and retrieved context from the knowledge base with optional style/format rules and filters.
Related MCP server: MyAITwin MCP
Setup
Prerequisites
A Skald account with an API key. Get yours at platform.useskald.com
Node.js 18.0.0 or higher
Installation
Clone this repository:
git clone https://github.com/skaldlabs/skald-mcp
cd skald-mcpInstall dependencies:
npm installBuild the project:
npm run buildConfiguration
Cursor
Open Cursor Settings (
cmd+shift+pon macOS orctrl+shift+pon Windows → "Cursor Settings")Select "MCP" from the left sidebar and click "Add new global MCP server"
Add the following configuration:
{
"mcpServers": {
"skald": {
"type": "command",
"command": "node ABSOLUTE_PATH_TO_PROJECT/build/index.js --key=YOUR_SKALD_API_KEY"
}
}
}Replace:
ABSOLUTE_PATH_TO_PROJECTwith the full path to yourskald-mcpdirectoryYOUR_SKALD_API_KEYwith your Skald API key
Tip: Right-click on /build/index.js in Cursor and select "Copy Path" to get the absolute path.
Command-line arguments:
--key: Your Skald API key (required if not using environment variable)
Claude Desktop
Open Claude Desktop settings and navigate to the "Developer" tab
Click "Edit Config"
Add the following configuration:
{
"mcpServers": {
"skald": {
"command": "node",
"args": [
"ABSOLUTE_PATH_TO_PROJECT/build/index.js"
],
"env": {
"SKALD_API_KEY": "YOUR_SKALD_API_KEY"
}
}
}
}Replace:
ABSOLUTE_PATH_TO_PROJECTwith the full path to yourskald-mcpdirectoryYOUR_SKALD_API_KEYwith your Skald API key
Environment variables:
SKALD_API_KEY: Your Skald API key (required)
Restart Claude Desktop
Usage Examples
Chat with your knowledge base
Ask Cursor/Claude: "Check Skald for what are the instructions for running our Django server locally."The assistant will query your Skald knowledge base and return an answer.
Search for memos
Ask Cursor/Claude: "Search Skald for the docs about our product vision"The assistant will use the skald-search tool with semantic search to find relevant memos and display:
Title
UUID
Summary
Content snippet
Relevance score (for semantic search)
If you had asked for "memos with Product Vision in the title", the agent would pick another search method such as title_contains.
Create a new memo
Ask Cursor/Claude: "Generate an API reference for my endpoints and upload it to Skald"The assistant will create a new memo in your Skald knowledge base, which will be automatically processed and made searchable.
Tool Parameters
skald-chat
Parameter | Type | Required | Description |
| string | Yes | The question to ask your knowledge base |
| string | No | Project UUID (required when using Token Authentication) |
| Filter[] | No | Optional filters to narrow the search context |
skald-search
Parameter | Type | Required | Description |
| string | Yes | The search query |
| enum | Yes | One of: |
| number | No | Maximum results to return (1-50, default 10) |
| Filter[] | No | Optional filters to narrow results |
skald-create-memo
Parameter | Type | Required | Description |
| string | Yes | The title of the memo (max 255 characters) |
| string | Yes | The full content of the memo |
| string | No | Project UUID (required when using Token Authentication) |
| object | No | Custom JSON metadata |
| string | No | External reference ID to match with your documents |
| string[] | No | Tags for categorization |
| string | No | Source of the content (useful for integrations) |
skald-get-memo
Parameter | Type | Required | Description |
| string | Yes | The memo UUID or client reference ID |
| enum | No | Type of identifier: |
skald-update-memo
Parameter | Type | Required | Description |
| string | Yes | The memo UUID or client reference ID |
| enum | No | Type of identifier: |
| string | No | New title for the memo |
| string | No | New content for the memo |
| object | No | New metadata |
| string | No | New client reference ID |
| string | No | New source |
| string | No | New expiration date |
skald-delete-memo
Parameter | Type | Required | Description |
| string | Yes | The memo UUID or client reference ID |
| enum | No | Type of identifier: |
skald-generate
Parameter | Type | Required | Description |
| string | Yes | The prompt for document generation |
| string | No | Optional style/format rules |
| Filter[] | No | Optional filters to control which memos are used as context |
Filter Object
Filters are used in skald-chat, skald-search, and skald-generate to narrow results:
Field | Type | Required | Description |
| string | Yes | The field to filter on |
| enum | Yes | One of: |
| string or string[] | Yes | The value to filter by |
| enum | Yes |
|
Example filter:
{
"field": "source",
"operator": "eq",
"value": "notion",
"filter_type": "native_field"
}Development
Build
npm run buildLint
npm run lintFix linting issues
npm run lint:fixTroubleshooting
API Key Issues
If you get an error about a missing API key:
For Cursor: Ensure the
--keyargument is set in your configFor Claude Desktop: Ensure
SKALD_API_KEYis set in the env section
Module Not Found
If you see "Cannot find module '@skald-labs/skald-node'":
npm install
npm run buildConnection Issues
Check the debug logs:
Cursor: Check the MCP server logs in Cursor settings
Claude Desktop: Check the logs in Claude Desktop developer settings
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/skaldlabs/skald-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server