Skip to main content
Glama

Bruno MCP Server

by jcr82
4-Update Post.bru•907 B
meta { name: Update Post type: http seq: 4 } put { url: {{baseUrl}}/posts/1 body: json auth: none } headers { Content-Type: application/json Accept: application/json } body:json { { "id": 1, "title": "Updated Post Title", "body": "This post has been updated via Bruno MCP Server", "userId": 1 } } tests { test("Status should be 200", function() { expect(res.status).to.equal(200); }); test("Response should be JSON", function() { expect(res.headers['content-type']).to.include('application/json'); }); test("ID should remain the same", function() { expect(res.body.id).to.equal(1); }); test("Title should be updated", function() { expect(res.body.title).to.equal("Updated Post Title"); }); test("Body should be updated", function() { expect(res.body.body).to.equal("This post has been updated via Bruno MCP Server"); }); }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jcr82/bruno-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server