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
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,7 @@ build:
clean:
rm -rf .venv .pytest_cache .ruff_cache .mypy_cache build dist/*.egg-info \
src/*.egg-info wheel-out
# Belt-and-suspenders: even if a future `python -m build` forgets
# --outdir and writes wheels under dist/, clean them up so they
# don't leak into a future PyPI publish.
rm -f 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.2.2",
"version": "0.2.3",
"tool_count": 3,
"tools": [
{
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"

[project]
name = "m-dev-tools-mcp"
version = "0.2.2"
description = "MCP server for the m-dev-tools org catalog — exposes route_intent, describe, and verify as first-class agent tools."
version = "0.2.3"
description = "MCP server wrapping the m-dev-tools catalog: route_intent, describe, verify."
readme = "README.md"
license = { text = "AGPL-3.0" }
requires-python = ">=3.10"
Expand Down
6 changes: 3 additions & 3 deletions server.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.m-dev-tools/m-dev-tools-mcp",
"description": "MCP server for the m-dev-tools org catalog — exposes route_intent, describe, and verify as first-class agent tools.",
"description": "MCP server wrapping the m-dev-tools catalog: route_intent, describe, verify.",
"title": "m-dev-tools",
"websiteUrl": "https://github.com/m-dev-tools/m-dev-tools-mcp",
"repository": {
"url": "https://github.com/m-dev-tools/m-dev-tools-mcp",
"source": "github"
},
"version": "0.2.2",
"version": "0.2.3",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "m-dev-tools-mcp",
"version": "0.2.2",
"version": "0.2.3",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
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.2.2"
__version__ = "0.2.3"
Loading