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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "slither-mcp"
version = "2.3.1"
version = "2.3.2"
description = "MCP server for Slither static analysis of Solidity contracts"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
2 changes: 1 addition & 1 deletion slither_mcp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Slither MCP Server - MCP server for Slither static analysis."""

__version__ = "2.3.1"
__version__ = "2.3.2"
4 changes: 2 additions & 2 deletions slither_mcp/client/mcp_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ async def function_callees(self, request: FunctionCalleesRequest) -> FunctionCal
Response with internal, external, and library callees
"""
request.path = self._project_path
return await self._call_tool("function_callees", request, FunctionCalleesResponse)
return await self._call_tool("get_function_callees", request, FunctionCalleesResponse)

async def function_callers(self, request: FunctionCallersRequest) -> FunctionCallersResponse:
"""
Expand All @@ -280,7 +280,7 @@ async def function_callers(self, request: FunctionCallersRequest) -> FunctionCal
Response with internal, external, and library callers
"""
request.path = self._project_path
return await self._call_tool("function_callers", request, FunctionCallersResponse)
return await self._call_tool("get_function_callers", request, FunctionCallersResponse)

async def get_inherited_contracts(
self, request: GetInheritedContractsRequest
Expand Down
Loading