Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Basic Create Tool

FreeNot checked

A minimal MCP server using FastMCP to demonstrate tool creation, including a get_weather example.

GitHubEmbed

About

A minimal MCP server using FastMCP to demonstrate tool creation, including a get_weather example.

README

A minimal Model Context Protocol (MCP) project demonstrating how to create and register tools using the fastmcp framework.

This repository shows how to build a working MCP server that can expose Python functions as tools for AI clients like Claude Desktop or any other MCP-compatible app.


🚀 Features

  • Simple MCP server setup using FastMCP
  • Example tool implementation (get_weather)
  • Easy to extend with more tools
  • Ready for integration with Claude or ChatGPT (via MCP)

1️⃣ Clone the repository

git clone https://github.com/anilvermaspeaks/mcp-bacis-create-tool.git
cd mcp-bacis-create-tool

 Create and activate a virtual environment
python -m venv basics-mcp


To connect this tool to Claude Desktop, add the following entry inside your Claude configuration file:

Config path:

Windows → %APPDATA%\Claude\claude_desktop_config.json

macOS → ~/Library/Application Support/Claude/claude_desktop_config.json

Add this JSON snippet:

{
  "mcpServers": {
    "mcp-bacis-create-tool": {
      "command": "python",
      "args": [
        "D:/basics-mcp/main.py"
      ],
      "env": {
        "PYTHONPATH": "D:/basics-mcp"
      }
    }
  }
}

## run MCP server(main.py) using custom mcp client(client.py)
  uv run python client.py

from github.com/anilvermaspeaks/mcp-bacis-create-tool

Installing Basic Create Tool

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/anilvermaspeaks/mcp-bacis-create-tool

FAQ

Is Basic Create Tool MCP free?

Yes, Basic Create Tool MCP is free — one-click install via Unyly at no cost.

Does Basic Create Tool need an API key?

No, Basic Create Tool runs without API keys or environment variables.

Is Basic Create Tool hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Basic Create Tool in Claude Desktop, Claude Code or Cursor?

Open Basic Create Tool 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

Compare Basic Create Tool with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs