allthingsdev-mcp-server
Version:
🚀 Official MCP server for AllThingsDev API marketplace. Discover, search, and integrate 600+ APIs directly through Claude Desktop, Cursor IDE, and other AI assistants. Features real-time API search, pricing comparison, endpoint documentation, and seamles
40 lines (36 loc) • 1.43 kB
JavaScript
// Script to generate Cursor IDE install link for AllThingsDev MCP Server
// The config that should be added to mcpServers
const serverConfig = {
"command": "npx",
"args": ["-y", "allthingsdev-mcp-server"]
};
const configString = JSON.stringify(serverConfig);
const base64Config = Buffer.from(configString).toString('base64');
const installLink = `cursor://anysphere.cursor-deeplink/mcp/install?name=allthingsdev&config=${base64Config}`;
console.log('='.repeat(80));
console.log('🚀 AllThingsDev MCP Server - Cursor IDE Install Link');
console.log('='.repeat(80));
console.log();
console.log('📋 INSTALL LINK:');
console.log(installLink);
console.log();
console.log('📝 CONFIG THAT WILL BE INSTALLED:');
console.log('This will be added as "allthingsdev" in your mcpServers section:');
console.log(JSON.stringify(serverConfig, null, 2));
console.log();
console.log('📋 MANUAL CONFIG (if link doesn\'t work):');
console.log('Add this to your Cursor mcp.json file:');
console.log(JSON.stringify({
"mcpServers": {
"allthingsdev": serverConfig
}
}, null, 2));
console.log();
console.log('🔗 USAGE:');
console.log('1. Copy the install link above');
console.log('2. Paste it in browser or share with users');
console.log('3. Users click the link to auto-install in Cursor IDE');
console.log();
console.log('✨ Users can now discover 600+ APIs directly in Cursor!');
console.log('='.repeat(80));