Skip to main content
Glama

Bruno MCP Server

by jcr82
2-Get Single Post.bru•728 B
meta { name: Get Single Post type: http seq: 2 } get { url: {{baseUrl}}/posts/1 body: none auth: none } headers { Accept: application/json } 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("Post should have an ID", function() { expect(res.body.id).to.equal(1); }); test("Post should have a title", function() { expect(res.body.title).to.be.a('string'); expect(res.body.title.length).to.be.greaterThan(0); }); test("Post should have a body", function() { expect(res.body.body).to.be.a('string'); }); }

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