Skills Plugins MCP Prompt Model 博客 我的中心

joplin

Orchestration guidance for Joplin note, notebook, and tag management tools

DeepseekModel キュレーション済みスキル 品質 優秀 · 78 v1.0.0

取得

https://deepseekmodel.com/api/download.php?id=alondmnt-joplin-mcp-skills-joplin-skill-md&format=skill
ダウンロード .skill 標準形式。system_prompt と model_config を収録し、任意の Agent で利用可能
.skill ファイルの system_prompt フィールドの実際の内容。
name joplin description Orchestration guidance for Joplin note, notebook, and tag management tools user-invocable true Joplin MCP — Orchestration Guide This skill covers non-obvious tool interactions. Tool parameters are already in the tool schemas — don't restate them here. Setup If Joplin MCP tools (e.g., ping_joplin ) aren't available, the server isn't connected. Follow these steps to configure it automatically: Ask the user for their Joplin API token. Tell them where to find it: Open Joplin Desktop → Tools → Options → Web Clipper → copy the Authorization token . Write .mcp.json to the project root with the token. Use the Write tool to create the file: { "mcpServers" : { "joplin-mcp" : { "command" : "uvx" , "args" : [ "--from" , "joplin-mcp" , "joplin-mcp-server" ] , "env" : { "JOPLIN_TOKEN" : "<paste_token_here>" } } } } This file is already covered by .gitignore ( .* rule) so it won't be committed. Tell the user to restart Claude Code. The MCP server is loaded at startup, so a restart is required for the tools to appear. After restart , call ping_joplin to verify the connection. Critical: edit_note vs update_note edit_note — find/replace, append, prepend. Use this for partial changes. update_note(body=...) — replaces the entire body . Only use when you intend to rewrite the whole note. If you need to change a paragraph, fix a typo, or append a section: always use edit_note . Reading long notes get_note returns a table of contents (not content) when a note exceeds ~50 lines. To read the actual content: get_note(note_id) — see the TOC and line count get_note(note_id, section="Section Name") — extract a specific section get_note(note_id, start_line=1, line_count=50) — sequential reading by line range get_note(note_id, force_full=True) — force full content (large context cost) IDs vs names Parameter Accepts note_id 32-char hex ID only notebook_name Human-readable name (e.g., "Work") tag_name Human-readable name (e.g., "important") parent_id Omit for top-level notebooks, or pass a 32-char hex parent notebook ID only Search results return IDs — use those IDs in subsequent calls. Pre-check before bulk tagging tag_note fails if the tag doesn't exist. Before tagging multiple notes: create_tag("my-tag") — create it first (idempotent if it already exists) Then loop: tag_note(note_id, "my-tag") for each note Workflow recipes Edit a long note get_note(id) # see TOC + line count get_note(id, section="Target") # read the section you need edit_note(id, old_string="...", new_string="...") # surgical edit Create a sub-notebook with notes create_notebook("Sub") # top-level notebook: omit parent_name create_notebook("Sub", parent_name="Projects/Work") # under an existing notebook (by name or path) create_note("Title", notebook_name="Sub", body="...") Bulk-tag notes from search create_tag("project-x") # ensure tag exists first find_notes("project x") # get note IDs tag_note(id1, "project-x") # tag each result tag_note(id2, "project-x") Move a note to a different notebook list_notebooks() # find target notebook ID update_note(note_id, notebook_id="<target_hex_id>")
このスキルを起動するキーワード。クリックでコピーできます。

このスキルにはトリガーワードがありません。

ダウンロードした .skill に含まれるフィールド。
フィールド 説明
formatフォーマット識別子(skill/v1)
skill_idスキル固有 ID
nameスキル名
versionバージョン
description説明
categoryカテゴリ(配列)
trigger_wordsトリガーワード
tagsタグ
sourceソース
source_urlソース URL(本ページ)
exported_atエクスポート日時(ダウンロード毎)
system_promptシステムプロンプト本文
model_configモデル設定:provider / model / temperature / max_tokens / top_p
examplesサンプル
install_guide各プラットフォームの導入説明(Coze / Dify / Claude / カスタム)
同じスキルを各プラットフォーム形式で出力できます。
.skill 標準形式。system_prompt と model_config を収録し、任意の Agent で利用可能 ダウンロード
.skillpro 拡張形式。scripts / tools / dependencies / hooks を含む ダウンロード
.json 純粋な JSON 出力。system_prompt とモデル設定のみ ダウンロード
Coze frontmatter 付き Markdown。Coze へのインポート用 ダウンロード
Dify Dify DSL。アプリ作成後にそのままインポート ダウンロード

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。