We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/evilpixi/pixi-midnight-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
export const config = {
agentId: 'test-agent',
walletBackupFolder: '/tmp/test-wallet',
logDir: '/tmp/test-logs',
proofServer: 'http://test-proof.com',
indexer: 'https://test-indexer.com',
indexerWS: 'wss://test-indexer.com/ws',
node: 'https://test-node.com',
useExternalProofServer: true,
networkId: 'test-network',
walletFilename: 'test-wallet.json',
};
export const WalletBuilder = {
buildFromSeed: jest.fn(),
restore: jest.fn(),
};
export const WalletManager = jest.fn().mockImplementation(() => ({
getAddress: jest.fn(),
getBalance: jest.fn(),
close: jest.fn(),
}));
export const TestnetRemoteConfig = jest.fn().mockImplementation(() => ({}));