Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: install test lint mypy fmt check manifest check-manifest check-agents clean
.PHONY: install test lint mypy fmt check manifest check-manifest check-agents build clean

PYTHON := .venv/bin/python
PYTEST := .venv/bin/pytest
Expand Down Expand Up @@ -60,6 +60,13 @@ check-agents:
fi
@echo "check-agents: AGENTS.md present; CLAUDE.md → AGENTS.md ✓"

# Build the wheel for a GitHub Release. PEP-517 via the `build`
# front-end; ships pure-Python with no compiled extensions. The
# resulting `dist/m_dev_tools_mcp-<ver>-py3-none-any.whl` is what
# `gh release create` attaches as a downloadable asset.
build:
$(PYTHON) -m build --wheel

clean:
rm -rf .venv .pytest_cache .ruff_cache .mypy_cache build dist/*.egg-info \
src/*.egg-info
src/*.egg-info dist/*.whl dist/*.tar.gz
2 changes: 1 addition & 1 deletion dist/mcp-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://raw.githubusercontent.com/m-dev-tools/.github/main/profile/repo.meta.schema.json",
"kind": "m-dev-tools-mcp.tools",
"package": "m_dev_tools_mcp",
"version": "0.0.1",
"version": "0.1.0",
"tool_count": 3,
"tools": [
{
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "m-dev-tools-mcp"
version = "0.0.1"
version = "0.1.0"
description = "MCP server for the m-dev-tools org catalog — exposes route_intent, describe, and verify as first-class agent tools."
readme = "README.md"
license = { text = "AGPL-3.0" }
Expand Down Expand Up @@ -33,6 +33,7 @@ dev = [
"pytest-randomly",
"ruff>=0.5",
"mypy>=1.10",
"build>=1.2",
]

[project.scripts]
Expand Down
2 changes: 1 addition & 1 deletion src/m_dev_tools_mcp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""m-dev-tools-mcp — MCP server wrapping the m-dev-tools org catalog."""

__version__ = "0.0.1"
__version__ = "0.1.0"
Loading