joplin-mcp-server 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/PKG-INFO +1 -1
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/pyproject.toml +1 -1
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/src/joplin_mcp_server/entry.py +2 -3
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/src/joplin_mcp_server.egg-info/PKG-INFO +1 -1
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/LICENSE.md +0 -0
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/README.md +0 -0
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/setup.cfg +0 -0
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/src/__init__.py +0 -0
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/src/joplin_mcp_server/__init__.py +0 -0
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/src/joplin_mcp_server/joplin_client.py +0 -0
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/src/joplin_mcp_server.egg-info/SOURCES.txt +0 -0
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/src/joplin_mcp_server.egg-info/dependency_links.txt +0 -0
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/src/joplin_mcp_server.egg-info/entry_points.txt +0 -0
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/src/joplin_mcp_server.egg-info/requires.txt +0 -0
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/src/joplin_mcp_server.egg-info/top_level.txt +0 -0
- {joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/tests/test_dummy.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: joplin-mcp-server
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A Model Context Protocol (MCP) stdio server for Joplin, exposing Joplin's local REST API as MCP tools. Built with Python, uv, httpx, and FastMCP.
|
|
5
5
|
Author-email: Zeyang Lin <4020306+linzeyang@users.noreply.github.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "joplin-mcp-server"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "A Model Context Protocol (MCP) stdio server for Joplin, exposing Joplin's local REST API as MCP tools. Built with Python, uv, httpx, and FastMCP."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -3,7 +3,6 @@ entry.py
|
|
|
3
3
|
A FastMCP server entry point for listing Joplin folders.
|
|
4
4
|
"""
|
|
5
5
|
|
|
6
|
-
import asyncio
|
|
7
6
|
import os
|
|
8
7
|
|
|
9
8
|
from fastmcp import FastMCP
|
|
@@ -18,10 +17,10 @@ joplin = JoplinClient(base_url="http://localhost:41184", token=JOPLIN_TOKEN)
|
|
|
18
17
|
|
|
19
18
|
|
|
20
19
|
@mcp.tool
|
|
21
|
-
def list_folders() -> dict:
|
|
20
|
+
async def list_folders() -> dict:
|
|
22
21
|
"""List all Joplin folders (notebooks) using the Joplin API."""
|
|
23
22
|
|
|
24
|
-
return
|
|
23
|
+
return await joplin.get_folders()
|
|
25
24
|
|
|
26
25
|
|
|
27
26
|
def main():
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: joplin-mcp-server
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A Model Context Protocol (MCP) stdio server for Joplin, exposing Joplin's local REST API as MCP tools. Built with Python, uv, httpx, and FastMCP.
|
|
5
5
|
Author-email: Zeyang Lin <4020306+linzeyang@users.noreply.github.com>
|
|
6
6
|
License-Expression: MIT
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/src/joplin_mcp_server.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/src/joplin_mcp_server.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/src/joplin_mcp_server.egg-info/requires.txt
RENAMED
|
File without changes
|
{joplin_mcp_server-0.1.0 → joplin_mcp_server-0.1.1}/src/joplin_mcp_server.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|