Nusawave MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Nusawave MCP Serverget the repo overview"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Nusawave MCP Server
MCP tools to read local git repos and fetch public web pages — no SerpAPI or Firecrawl required.
One shared server.py runs as multiple MCP servers (one process per repo), configured via environment variables or JSON config files.
Tools
Tool | What it does |
| README + key root files when present |
| List markdown files under |
| Read any file inside the configured repo |
| HTTP fetch any public URL → plain text |
| Fetch live site sections — only when |
Related MCP server: Simple Code Review Assistant
Quick start
git clone https://github.com/YOUR_ORG/nusawave-mcp.git
cd nusawave-mcp
python3 -m venv .venv
source .venv/bin/activate
pip install -e .
# Test on stdio (Ctrl+C to stop)
NUSAWAVE_REPO_PATH=/path/to/your/repo python server.pyOr with uv:
uv sync
NUSAWAVE_REPO_PATH=/path/to/your/repo uv run server.pyEnvironment variables
Variable | Default | Purpose |
|
| FastMCP server name (set per config entry) |
|
| Local clone path for this server process |
| (unset) | Live site base URL; required for |
Example: Nusawave projects
The maintainers run one server entry per repo. Copy the example config and adjust paths:
cp typingmind-mcp-config.example.json typingmind-mcp-config.json
# edit paths in typingmind-mcp-config.jsonServer key | Example repo |
|
|
| Yes |
|
| No |
|
| No |
|
| No |
|
| No |
Connect to Claude CLI
From this repo directory:
claude mcp add my-project \
-e NUSAWAVE_MCP_NAME=my-project \
-e NUSAWAVE_REPO_PATH=/path/to/your/repo \
-- /path/to/venv/bin/python /path/to/nusawave-mcp/server.py
claude mcp get my-projectThen run claude and ask it to use your MCP tools, e.g. “Use my-project to get the repo overview.”
Connect to Claude Desktop (Windows + WSL)
If Claude Desktop runs on Windows but the repo lives in WSL, use a UNC path for --directory or invoke WSL explicitly. See examples/claude-desktop-config.json.
Minimal WSL example (merge into %APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"nusawave-my-project": {
"command": "wsl",
"args": [
"-d", "Ubuntu", "--",
"/home/USER/apps/mcp/nusawave/.venv/bin/python",
"/home/USER/apps/mcp/nusawave/server.py"
],
"env": {
"NUSAWAVE_MCP_NAME": "nusawave-my-project",
"NUSAWAVE_REPO_PATH": "/home/USER/apps/your-repo"
}
}
}
}Restart Claude Desktop after editing the config.
Connect to TypingMind
1. Start the MCP connector
./start-connector.sh YOUR_AUTH_TOKENUse the same token shown in TypingMind → Settings → MCP. The script prints the exact URL to paste.
Critical: Connector URL must include the port:
URL | Result |
| Correct |
| Correct |
| Wrong — hits nginx on port 80 → 404 / "Update required" |
| Wrong — browsers cannot connect to |
Verify with:
./verify-connector.sh http://127.0.0.1:50880 YOUR_AUTH_TOKEN2. TypingMind settings
Settings → Advanced → Model Context Protocol
Delete and re-setup MCP Connector (clears stale URL)
Choose Private MCP Connector (not TypingMind Cloud)
Paste connector URL and auth token from step 1
Wait for green check / Get Started
3. Add local MCP servers
Click Edit Servers and paste your typingmind-mcp-config.json (copy from typingmind-mcp-config.example.json first).
4. Enable plugins
Plugins → enable the servers you need → attach to your character.
"Update required… restart MCP Connector" — TypingMind got 404 on
/mcp-connect. Almost always a wrong Connector URL (missing:50880).
WSL note
If TypingMind runs in Windows but this repo is in WSL, run the MCP connector inside WSL. Paths in the config must be valid on the machine where Python runs.
Example prompts
"Get the repo overview for my forecast project"
"Read docs/index.md and compare with the live site"
"Summarize the repository structure"
"Fetch https://example.github.io/ and summarize the homepage"
License
MIT — see LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nusawave/mcp-nusawave'
If you have feedback or need assistance with the MCP directory API, please join our Discord server