Skip to content

Commit 52cf112

Browse files
crivetimihaimadhav165
authored andcommitted
Massive mcp server and plugin update (#1051)
* MCP Servers and Plugins Signed-off-by: Mihai Criveti <[email protected]> * Formatting Signed-off-by: Mihai Criveti <[email protected]> * Update Readme Signed-off-by: Mihai Criveti <[email protected]> * Update plugin Signed-off-by: Mihai Criveti <[email protected]> * Update plugins Signed-off-by: Mihai Criveti <[email protected]> * Update docs Signed-off-by: Mihai Criveti <[email protected]> * Update chmod Signed-off-by: Mihai Criveti <[email protected]> * Update headers Signed-off-by: Mihai Criveti <[email protected]> * Update headers Signed-off-by: Mihai Criveti <[email protected]> --------- Signed-off-by: Mihai Criveti <[email protected]>
1 parent 57ecf5f commit 52cf112

File tree

74 files changed

+12864
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+12864
-1
lines changed

mcp-servers/python/chunker_server/Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Makefile for Chunker MCP Server
22

3+
<<<<<<< HEAD
34
.PHONY: help install dev-install install-nlp install-full format lint test dev mcp-info serve-http serve-sse test-http clean
5+
=======
6+
.PHONY: help install dev-install install-nlp install-full format lint test dev dev-fastmcp mcp-info serve-http serve-http-fastmcp test-http clean
7+
>>>>>>> df9572ea (Massive mcp server and plugin update (#1051))
48

59
PYTHON ?= python3
610
HTTP_PORT ?= 9010
@@ -52,6 +56,7 @@ mcp-info: ## Show MCP client config
5256
@echo ""
5357
@echo "=================================================================="
5458

59+
<<<<<<< HEAD
5560
serve-http: ## Run with native FastMCP HTTP
5661
@echo "Starting FastMCP server with native HTTP support..."
5762
@echo "HTTP endpoint: http://$(HTTP_HOST):$(HTTP_PORT)/mcp/"
@@ -62,6 +67,10 @@ serve-sse: ## Run with mcpgateway.translate (SSE bridge)
6267
@echo "Starting with translate SSE bridge..."
6368
@echo "SSE endpoint: http://$(HTTP_HOST):$(HTTP_PORT)/sse"
6469
@echo "HTTP endpoint: http://$(HTTP_HOST):$(HTTP_PORT)/"
70+
=======
71+
serve-http: ## Expose FastMCP server over HTTP
72+
@echo "HTTP: http://$(HTTP_HOST):$(HTTP_PORT)"
73+
>>>>>>> df9572ea (Massive mcp server and plugin update (#1051))
6574
$(PYTHON) -m mcpgateway.translate --stdio "$(PYTHON) -m chunker_server.server_fastmcp" --host $(HTTP_HOST) --port $(HTTP_PORT) --expose-sse
6675

6776
test-http: ## Basic HTTP checks

mcp-servers/python/chunker_server/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,11 @@ pip install spacy # For NLP processing
368368

369369
## License
370370

371+
<<<<<<< HEAD
371372
Apache-2.0 License - See LICENSE file for details
373+
=======
374+
MIT License - See LICENSE file for details
375+
>>>>>>> df9572ea (Massive mcp server and plugin update (#1051))
372376
373377
## Contributing
374378

mcp-servers/python/chunker_server/pyproject.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "chunker-server"
33
version = "2.0.0"
44
description = "Advanced text chunking MCP server with multiple strategies and configurable options"
55
authors = [
6+
<<<<<<< HEAD
67
{ name = "Mihai Criveti", email = "[email protected]" }
78
]
89
license = { text = "Apache-2.0" }
@@ -11,6 +12,18 @@ requires-python = ">=3.11"
1112
dependencies = [
1213
"fastmcp==2.11.3",
1314
"pydantic>=2.5.0",
15+
=======
16+
{ name = "MCP Context Forge", email = "[email protected]" }
17+
]
18+
license = { text = "MIT" }
19+
readme = "README.md"
20+
requires-python = ">=3.11"
21+
dependencies = [
22+
"fastmcp>=0.1.0",
23+
"mcp>=1.0.0",
24+
"pydantic>=2.5.0",
25+
"typing-extensions>=4.5.0",
26+
>>>>>>> df9572ea (Massive mcp server and plugin update (#1051))
1427
]
1528

1629
[project.optional-dependencies]
@@ -43,7 +56,12 @@ build-backend = "hatchling.build"
4356
packages = ["src/chunker_server"]
4457

4558
[project.scripts]
59+
<<<<<<< HEAD
4660
chunker-server = "chunker_server.server_fastmcp:main"
61+
=======
62+
chunker-server = "chunker_server.server:main"
63+
chunker-server-fastmcp = "chunker_server.server_fastmcp:main"
64+
>>>>>>> df9572ea (Massive mcp server and plugin update (#1051))
4765

4866
[tool.black]
4967
line-length = 100

0 commit comments

Comments
 (0)