Claude Custom Tools Server
FreeNot checkedProvides Claude Desktop with custom tools for math, web search (DuckDuckGo), Wikipedia, ArXiv, and simulated Airbnb searches via MCP.
About
Provides Claude Desktop with custom tools for math, web search (DuckDuckGo), Wikipedia, ArXiv, and simulated Airbnb searches via MCP.
README
This project implements a Model Context Protocol (MCP) server in Python that connects to Claude Desktop and exposes multiple custom tools such as:
- 🏠 Airbnb (simulated search)
- 🔍 DuckDuckGo web search
- 📚 Wikipedia search
- 📄 ArXiv research papers
- ➕➗ Custom math tools (add, multiply)
Claude can automatically invoke these tools via MCP using stdio communication.
📁 Project Structure
mcp_server_Claude/
│
├── .venv/ # Python virtual environment
│
├── tools/ # All MCP tools
│ ├── __init__.py
│ ├── airbnb.py # Simulated Airbnb tool
│ ├── arxiv.py # ArXiv research tool
│ ├── ddg.py # DuckDuckGo search
│ ├── maths.py # Add & Multiply tools
│ └── wiki.py # Wikipedia search
│
├── server.py # Main MCP server entry point
├── requirements.txt # Python dependencies
└── README.md
⚙️ Requirements
- Python 3.10+
- Claude Desktop (latest)
- Windows / macOS / Linux
📦 Install Dependencies
1️⃣ Create & activate virtual environment
python -m venv .venv
Windows
.venv\Scripts\activate
macOS / Linux
source .venv/bin/activate
2️⃣ Install required packages
pip install -r requirements.txt
🛠️ Tools Included
➕➗ Math Tools
add(a, b)multiply(a, b)
🔍 DuckDuckGo
- Web search without API key
📚 Wikipedia
- Short factual summaries
📄 ArXiv
- Academic research paper search
🏠 Airbnb
- Simulated listing search (demo purpose)
🚀 How to Run MCP Server (Local Test)
Before connecting Claude, always test locally.
cd D:/mcp_server_Claude
python server.py
✅ Expected behavior
- No errors
- Process stays running
- Press
CTRL + Cto stop
If it crashes, Claude will also fail to connect.
🔌 Claude Desktop MCP Configuration
📍 Config file location (Windows)
%APPDATA%\Claude\claude_desktop_config.json
✅ MCP Server Configuration
{
"mcpServers": {
"custom-tools": {
"command": "D:/mcp_server_Claude/.venv/Scripts/python.exe",
"args": ["D:/mcp_server_Claude/server.py"]
}
}
}
🔁 Restart Claude Desktop
Fully close and reopen Claude after editing the config.
🧪 Testing in Claude
Try any of the following prompts:
Add 15 and 25
Multiply 6 and 7
Search DuckDuckGo for latest AI agent frameworks
Find arxiv papers on LLM agents
Search Airbnb in Bangalore for 2 guests
Claude will automatically call the appropriate tool.
Author: Husen Basha
Installing Claude Custom Tools Server
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/husenbasha443/mcp_using_Claude_desktopFAQ
Is Claude Custom Tools Server MCP free?
Yes, Claude Custom Tools Server MCP is free — one-click install via Unyly at no cost.
Does Claude Custom Tools Server need an API key?
No, Claude Custom Tools Server runs without API keys or environment variables.
Is Claude Custom Tools Server hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Claude Custom Tools Server in Claude Desktop, Claude Code or Cursor?
Open Claude Custom Tools Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare Claude Custom Tools Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
