Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions plane_mcp/tools/cycles.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,11 @@
from plane.models.query_params import WorkItemQueryParams
from pydantic import Field

from plane_mcp.pql_reference import PQL_FIELD_HINT, PQL_FULL_REFERENCE
from plane_mcp.client import get_plane_client_context
from plane_mcp.tools.pql_reference import PQL_FIELD_HINT, PQL_FULL_REFERENCE

logger = get_logger(__name__)

from plane_mcp.client import get_plane_client_context


def register_cycle_tools(mcp: FastMCP) -> None:
"""Register all cycle-related tools with the MCP server."""
Expand Down
3 changes: 1 addition & 2 deletions plane_mcp/tools/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@
UpdateModule,
)
from plane.models.query_params import WorkItemQueryParams
from plane.models.work_items import WorkItem
from pydantic import Field

from plane_mcp.client import get_plane_client_context
from plane_mcp.pql_reference import PQL_FIELD_HINT, PQL_FULL_REFERENCE
from plane_mcp.tools.pql_reference import PQL_FIELD_HINT, PQL_FULL_REFERENCE

logger = get_logger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion plane_mcp/tools/pql.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

from fastmcp import FastMCP

from plane_mcp.pql_reference import PQL_FIELD_DESCRIPTION, PQL_FULL_REFERENCE
from plane_mcp.tools.pql_reference import PQL_FIELD_DESCRIPTION, PQL_FULL_REFERENCE


def register_pql_tools(mcp: FastMCP) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -342,4 +342,4 @@
cf["<decimal-prop-uuid>"] >= 5
cf["<bool-prop-uuid>"] = true
```
"""
"""
2 changes: 1 addition & 1 deletion plane_mcp/tools/work_items.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from pydantic import Field

from plane_mcp.client import get_plane_client_context
from plane_mcp.pql_reference import PQL_FIELD_HINT, PQL_FULL_REFERENCE
from plane_mcp.tools.pql_reference import PQL_FIELD_HINT, PQL_FULL_REFERENCE

logger = get_logger(__name__)

Expand Down