We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MightyDillah/apple-doc-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { header } from '../markdown.js';
export const buildNoTechnologyMessage = ({ state }) => () => {
const lastDiscovery = state.getLastDiscovery();
const lines = [
header(1, '🚦 Technology Not Selected'),
'Before you can search or view documentation, choose a framework/technology.',
'',
header(2, 'How to get started'),
'• `discover_technologies { "query": "swift" }` — narrow the catalogue with a keyword',
'• `choose_technology "SwiftUI"` — select the framework you want to explore',
'• `search_symbols { "query": "tab view layout" }` — run focused keyword searches',
'',
'**Search tips:** start broad ("tab", "animation"), avoid punctuation, and try synonyms ("toolbar" vs "tabbar").',
];
if (lastDiscovery?.results?.length) {
lines.push('', '### Recently discovered frameworks');
for (const result of lastDiscovery.results.slice(0, 5)) {
lines.push(`• ${result.title} (\`choose_technology "${result.title}"\`)`);
}
}
return {
content: [{ text: lines.join('\n'), type: 'text' }],
};
};
//# sourceMappingURL=no-technology.js.map