Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 974 Bytes

File metadata and controls

26 lines (19 loc) · 974 Bytes

Goal

Create a basic hello world MCP server using COBOL. It can be httpStreamable or STDIO.

Requirements

It must:

  • Have a Dockerfile and work in a container
  • Have all documentation to build and run stored in a README.md
  • compile with gnucobol (cobc)
  • Create a "test.sh" script that can launch a built docker container on port 8090 and test it for proper MCP server JSON responses

Examples to use

A Web Server in gnucobol: https://github.com/jmsdnns/webbol.git A python MCP server: https://github.com/jlowin/fastmcp.git

MCP Requirements

Should handle connect session (often a POST to / or /mcp) Should advertise a "hello world" tool that takes in a single string Tool should then reply with "hello $string"