We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/OpenZeppelin/contracts-wizard'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import contracts from '../openzeppelin-contracts';
import type { Contract } from './contract';
import { printContract } from './print';
export function printContractVersioned(contract: Contract): string {
return printContract(contract, {
transformImport: p => {
return {
...p,
path: p.path.replace(/^@openzeppelin\/contracts(-upgradeable)?/, `$&@${contracts.version}`),
};
},
});
}