You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
So I was interested in learning to make MCPs, and I started with a simple python file called "FastMCP-Intro.py":
fromfastmcpimportFastMCPmcp=FastMCP("LearningDemo")
@mcp.tool()defadd(a: int, b: int):
"""Add two numbers"""returna+b
After running fastmcp install FastMCP-Intro.py in the correct working directory, my terminal says: Added server 'LearningDemo' to Claude config and Successfully installed LearningDemo in Claude app, indicating that the installation was successful. Looking at Claude's config file, it does contain:
However, after launching the Claude desktop app, the Settings say that there was an Error, with the message "Server disconnected". I also tried with the config:
However, public MCPs that I was previously using still worked, connecting like normal.
When I ran fastmcp dev FastMCP-Intro.py and accessed the MCP Inspector from my browser, the MCP worked fine. I was able to use the "add" tool to add two numbers, with no troubles. On the sidebar, there were three errors: [03/29/25 13:47:39] INFO Processing request of type server.py:534 ListResourcesRequest, [03/29/25 13:47:48] INFO Processing request of type server.py:534 ListToolsRequest, and [03/29/25 13:48:02] INFO Processing request of type server.py:534 CallToolRequest, but the MCP tool still worked perfectly fine in the Inspector.
Realizing that the jlowin/fastmcp directory was no longer maintained, I turned to here with the code
frommcp.server.fastmcpimportFastMCPmcp=FastMCP("LearningDemo")
@mcp.tool()defadd(a: int, b: int):
"""Add two numbers"""returna+b
, but that returns the same error. I tried running uv run --with mcp[cli] mcp run /Users/path/to/correct/directory/FastMCP-Intro.py in my terminal, but it returned with an error and said: zsh: no matches found: mcp[cli].
Running uv run --with mcp mcp run /Users/path/to/correct/directory/FastMCP-Intro.py or uv run --with fastmcp fastmcp run /Users/path/to/correct/directory/FastMCP-Intro.py both don't return with an error, but nothing showed in the terminal and I ended up CTRL+C'ing out of it.
Expected behavior
Claude can recognize the demo MCP tool and use it to add numbers
Screenshots
Desktop:
OS: MacOS Sequoia 15.3.2
Browser: Claude Desktop
MCP: latest
The text was updated successfully, but these errors were encountered:
brew install uv fixed it for me. Pulled from this thread. I had previously only installed UV via curl.
Based on my understanding, Claude was not able to find the UV command to run the server and the brew install helps there. Per the linked thread, another option was to help Claude find the path to UV.
Describe the bug
So I was interested in learning to make MCPs, and I started with a simple python file called "FastMCP-Intro.py":
After running
fastmcp install FastMCP-Intro.py
in the correct working directory, my terminal says:Added server 'LearningDemo' to Claude config
andSuccessfully installed LearningDemo in Claude app
, indicating that the installation was successful. Looking at Claude's config file, it does contain:However, after launching the Claude desktop app, the Settings say that there was an Error, with the message "Server disconnected". I also tried with the config:
but this returned the same error.
However, public MCPs that I was previously using still worked, connecting like normal.
When I ran
fastmcp dev FastMCP-Intro.py
and accessed the MCP Inspector from my browser, the MCP worked fine. I was able to use the "add" tool to add two numbers, with no troubles. On the sidebar, there were three errors:[03/29/25 13:47:39] INFO Processing request of type server.py:534 ListResourcesRequest
,[03/29/25 13:47:48] INFO Processing request of type server.py:534 ListToolsRequest
, and[03/29/25 13:48:02] INFO Processing request of type server.py:534 CallToolRequest
, but the MCP tool still worked perfectly fine in the Inspector.Realizing that the jlowin/fastmcp directory was no longer maintained, I turned to here with the code
with the implementation
, but that returns the same error. I tried running
uv run --with mcp[cli] mcp run /Users/path/to/correct/directory/FastMCP-Intro.py
in my terminal, but it returned with an error and said:zsh: no matches found: mcp[cli]
.Running
uv run --with mcp mcp run /Users/path/to/correct/directory/FastMCP-Intro.py
oruv run --with fastmcp fastmcp run /Users/path/to/correct/directory/FastMCP-Intro.py
both don't return with an error, but nothing showed in the terminal and I ended up CTRL+C'ing out of it.Expected behavior
Claude can recognize the demo MCP tool and use it to add numbers
Screenshots

Desktop:
The text was updated successfully, but these errors were encountered: