We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jmagar/homelab-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ssh-pool-exec.test.ts•401 B
import { describe, it, expect } from "vitest";
/**
* DEPRECATED: ssh-pool-exec is now deprecated
*
* Tests have been migrated to:
* - ssh-service.test.ts - For SSHService class tests
* - ssh-connection-pool.test.ts - For connection pool tests
*/
describe("ssh-pool-exec (deprecated)", () => {
it("module is deprecated in favor of ssh-service", () => {
expect(true).toBe(true);
});
});