AgentHubAgentHub

obsidian-mcp-secure

MCP ServerMCP Registry官方收录

io.github.dewtech-technologies/obsidian-mcp-secure · v1.0.4

Secure MCP server for Obsidian with OWASP Top 10 controls and full audit logging.

概览

obsidian-mcp-secure 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "obsidian-mcp-secure": {
      "command": "npx",
      "args": [
        "-y",
        "obsidian-mcp-secure"
      ],
      "env": {
        "OBSIDIAN_API_KEY": "<OBSIDIAN_API_KEY>"
      }
    }
  }
}

环境变量

OBSIDIAN_API_KEY必填secret

API Key generated by Obsidian's Local REST API plugin (Settings -> Local REST API -> API Key)

OBSIDIAN_HOST可选

Host of the Local REST API (default: http://127.0.0.1)

OBSIDIAN_PORT可选

Port of the Local REST API (default: 27123)

LOG_DIR可选

Directory for audit logs (default: ./logs)

相关资源

统一 Manifest

{
  "id": "io.github.dewtech-technologies/obsidian-mcp-secure",
  "type": "mcp-server",
  "version": "1.0.4",
  "displayName": "obsidian-mcp-secure",
  "description": "Secure MCP server for Obsidian with OWASP Top 10 controls and full audit logging.",
  "repository": {
    "url": "https://github.com/dewtech-technologies/obsidian-mcp-secure",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "obsidian-mcp-secure",
        "version": "1.0.4",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "OBSIDIAN_API_KEY",
            "description": "API Key generated by Obsidian's Local REST API plugin (Settings -> Local REST API -> API Key)",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "OBSIDIAN_HOST",
            "description": "Host of the Local REST API (default: http://127.0.0.1)"
          },
          {
            "name": "OBSIDIAN_PORT",
            "description": "Port of the Local REST API (default: 27123)"
          },
          {
            "name": "LOG_DIR",
            "description": "Directory for audit logs (default: ./logs)"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.dewtech-technologies/obsidian-mcp-secure",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.dewtech-technologies%2Fobsidian-mcp-secure/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
obsidian-mcp-secure — MCP Server 安装与配置 · AgentHub