Obsidian Dictionary MCP Server

Obsidian Dictionary MCP Server

Enables the management of a technical terminology glossary within an Obsidian vault by providing tools to add, search, and retrieve term definitions. It supports structured Markdown entries featuring both developer-focused and simplified explanations for efficient knowledge management.

Category
Visit Server

README

Obsidian Dictionary MCP Server

Obsidian vault 안에서 기술 용어 사전을 관리하기 위한 MCP 서버입니다.

설치 및 설정

1. 빌드

cd obsidian-dictionary-mcp
npm install
npm run build

2. Claude Desktop 설정

~/Library/Application Support/Claude/claude_desktop_config.json 파일을 열고 다음을 추가하세요:

{
  "mcpServers": {
    "dict": {
      "command": "node",
      "args": [
        "/path/to/obsidian-dictionary-mcp/dist/index.js",
        "--glossary-path",
        "/path/to/your/ObsidianVault/Glossary/개발용어사전.md"
      ]
    }
  }
}

3. Claude Code (CLI) 설정

Claude Code CLI에서 사용하려면 두 가지 방법 중 하나를 선택하세요:

방법 A: 프로젝트별 설정 (권장)

프로젝트 루트에 .mcp.json 파일을 생성:

{
  "mcpServers": {
    "dict": {
      "command": "node",
      "args": [
        "/path/to/obsidian-dictionary-mcp/dist/index.js",
        "--glossary-path",
        "/path/to/your/ObsidianVault/Glossary/개발용어사전.md"
      ]
    }
  }
}

방법 B: 전역 설정

~/.claude/settings.json 파일에 추가:

{
  "mcpServers": {
    "dict": {
      "command": "node",
      "args": [
        "/path/to/obsidian-dictionary-mcp/dist/index.js",
        "--glossary-path",
        "/path/to/your/ObsidianVault/Glossary/개발용어사전.md"
      ]
    }
  }
}

중요: 설정 파일을 생성하거나 수정한 후에는 Claude Code를 재시작해야 변경 사항이 적용됩니다. MCP 서버는 Claude Code가 시작될 때 설정을 읽어서 실행되기 때문입니다.

--glossary-path 옵션

--glossary-path 옵션으로 기본 용어집 경로를 설정하면:

  • 도구 호출 시 file_path 파라미터를 생략할 수 있습니다
  • 설정하지 않으면 매번 file_path를 명시해야 합니다

사용 가능한 도구

append_entry

새 용어를 사전에 추가합니다.

파라미터:

  • file_path (선택): 사전 파일 경로 (기본 경로 설정 시 생략 가능)
  • term: 추가할 용어
  • dev_explanation: 개발자용 설명 (한국어, 1-2문장)
  • simple_explanation: 비개발자용 설명 (한국어, 1문장)
  • example: 예시 (한국어, 1줄)

search_entry

용어가 이미 존재하는지 확인합니다.

파라미터:

  • file_path (선택): 사전 파일 경로 (기본 경로 설정 시 생략 가능)
  • term: 검색할 용어

get_entry

특정 용어의 내용만 가져옵니다 (전체 파일 X).

파라미터:

  • file_path (선택): 사전 파일 경로 (기본 경로 설정 시 생략 가능)
  • term: 가져올 용어

list_terms

사전에 있는 모든 용어 목록을 반환합니다 (용어명만, 내용 X).

파라미터:

  • file_path (선택): 사전 파일 경로 (기본 경로 설정 시 생략 가능)

사전 엔트리 형식

### {term}
- 개발자용 설명: {개발자 관점의 설명}
- 비개발자용 설명: {쉬운 설명}
- 예시: {짧은 예시}

Obsidian Vault 경로

사전 파일 경로 예시:

/path/to/your/ObsidianVault/Glossary/개발용어사전.md

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured