We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/steipete/Peekaboo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import Foundation
import Testing
@testable import PeekabooCLI
// TODO: PermissionsCommand tests commented out - command no longer exists
/*
@Suite(.tags(.safe))
struct PermissionsCommandTests {
@Test("PermissionsCommand configuration matches original")
func commandConfiguration() {
// Verify the command has the same configuration as the original
#expect(PermissionsCommand.commandDescription.commandName == "permissions")
#expect(PermissionsCommand.commandDescription.abstract == "Check system permissions required for Peekaboo")
#expect(!PermissionsCommand.commandDescription.discussion.isEmpty)
}
@Test("PermissionsCommand has JSON output flag")
func jSONOutputFlag() throws {
// Create command instance
let command = PermissionsCommand()
// Verify the default value
#expect(command.jsonOutput == false)
}
}
*/