Skip to content

Commit cfc2f72

Browse files
committed
Bump version to 0.4.1 and update schema URL to 2025-09-29 in workflow and server.json.
1 parent 4c0aa5f commit cfc2f72

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
import urllib.request
105105
from jsonschema import ValidationError, validate
106106
107-
schema_url = "https://static.modelcontextprotocol.io/schemas/2025-09-16/server.schema.json"
107+
schema_url = "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json"
108108
109109
try:
110110
with urllib.request.urlopen(schema_url, timeout=30) as response:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "codealive-mcp"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "MCP server for the CodeAlive API"
55
readme = "README.md"
66
requires-python = ">=3.11"
@@ -27,4 +27,4 @@ build-backend = "setuptools.build_meta"
2727

2828
[tool.setuptools]
2929
packages = ["src"]
30-
package-dir = {"" = "."}
30+
package-dir = {"" = "."}

server.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-16/server.schema.json",
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
33
"name": "io.github.CodeAlive-AI/codealive-mcp",
44
"version": "0.2.0",
55
"description": "Semantic code search and analysis from CodeAlive for AI assistants and agents.",

src/codealive_mcp_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,4 +165,4 @@ def main():
165165

166166

167167
if __name__ == "__main__":
168-
main()
168+
main()

0 commit comments

Comments
 (0)