Metadata-Version: 2.4
Name: mcp-server-dev-kit
Version: 0.1.0
Summary: CLI toolkit for MCP servers — create, test, publish and manage Model Context Protocol servers
Project-URL: Homepage, https://github.com/AiAgentKarl/mcp-tools
Project-URL: Repository, https://github.com/AiAgentKarl/mcp-tools
Author: AiAgentKarl
License: MIT
Keywords: agent,cli,create,mcp,model-context-protocol,scaffold
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Requires-Dist: pydantic>=2.0.0
Description-Content-Type: text/markdown

# mcp-tools ⚡

CLI toolkit for MCP server development — create, manage, search and publish Model Context Protocol servers.

## Installation

```bash
pip install mcp-tools
```

## Commands

### Create a new MCP server

```bash
mcp-tools create weather
```

Generates a complete project with server, tools, config, README and .gitignore — ready to develop.

### Search the server catalog

```bash
mcp-tools search crypto
mcp-tools search health
mcp-tools search infrastructure
```

### Add a server to your project

```bash
mcp-tools add solana --package solana-mcp-server
mcp-tools add weather --package openmeteo-mcp-server
```

### List configured servers

```bash
mcp-tools list
```

### Remove a server

```bash
mcp-tools remove weather
```

## What it generates

```
my-server/
├── src/
│   ├── server.py          # FastMCP server entry point
│   ├── tools/
│   │   └── main_tools.py  # Your tool definitions
│   └── clients/           # API clients
├── pyproject.toml          # Package config with entry points
├── README.md
└── .gitignore
```

## License

MIT
