Skip to main content
Glama

Heroku MCP server

Official
by heroku
dev-center-resource.spec.ts693 B
import { expect } from 'chai'; import sinon from 'sinon'; import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import { registerDevCenterResource } from './dev-center-resource.js'; describe('registerDevCenterResource', () => { let server: sinon.SinonStubbedInstance<McpServer>; beforeEach(() => { server = sinon.createStubInstance(McpServer); }); afterEach(() => { sinon.restore(); }); it('registers the resource with the correct name', () => { registerDevCenterResource(server as any); expect(server.resource.calledOnce).to.be.true; const call = server.resource.getCall(0); expect(call.args[0]).to.equal('heroku_dev_center'); }); });

Latest Blog Posts

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/heroku/heroku-mcp-server'

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