About Claude MCP Test
Claude MCP Test is an MCP server published by aji-ai in the Developer Tools category: test repository created via claude-desktop with github MCP server. It has been installed 0 times through Conduid.
The repository has 11 stars and 0 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx claude-mcp-testThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Claude MCP Test
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
Making a Claude MCP By Urself
I found this cool repo called fastmcp and gave it a whirl after figuring out how to use Claude MCP over here.
Getting Started
brew install uv
uv pip install fastmcp
Run the server in server.py
fastmcp install server.py
I had to run this:
uv pip install "pydantic>=2.0.0"
as I had the wrong version of pydantic installed. And I got back:
(base) ➜ claude-mcp-test git:(main) ✗ fastmcp install server.py
[11/30/24 18:07:43] INFO Added server 'Demo' to Claude config claude.py:98
INFO Successfully installed Demo in Claude app cli.py:355
It can be tested out with:
fastmcp dev server.py
You can then launch a server. Select 'connect' and then 'Tools' at the top menu.

I entered the two input parameters ... and it worked!

There's the issue of lots of errors pouring out into the console. But ... it seems to work. Let's now plug it in.
Making it run
I proceeded to go ahead and run it:
fastmcp run server.py
Note that the "installation" only means it writes into the claude_desktop_config.json file. If you want to remove it, you should just edit the entry from the file:
"Demo": {
"command": "uv",
"args": [
"run",
"--with",
"fastmcp",
"fastmcp",
"run",
"/Users/maeda/Documents/GitHub/claude-mcp-test/server.py"
]
}
Trying it out in Claude
So I quit Claude and restarted it. And then saw that the "Demo" server is connected.

I then proceeded to try it out. It HIL'd me to ask if I could use 'Demo' and I gave it permission.

It worked!

Not bad fastmcp!
README mirrored from the source repository 2 days ago. The original is authoritative.