apicentric 0.2.7

Toolkit for building, recording, and sharing mock APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
name: test-service
version: "1.0"
description: Test service for MCP
server:
  port: 9005
  base_path: /api
endpoints:
  - method: GET
    path: /test
    responses:
      200:
        content_type: application/json
        body: '{"message": "Test service working"}'