Skip to main content
Glama

SFCC Development MCP Server

by taurgis
NextStepsStrip.tsx•1.07 kB
import React from 'react'; import { H3 } from './Typography'; export const NextStepsStrip: React.FC = () => { const cards = [ { href: '/#/ai-interfaces', title: 'šŸ¤– AI Interface Setup', desc: 'Connect Claude, Copilot, Cursor' }, { href: '/#/tools', title: 'šŸ› ļø Tool Surface', desc: 'Explore all available tools' }, { href: '/#/examples', title: 'šŸ’” Examples', desc: 'Real prompts & outcomes' }, { href: '/#/troubleshooting', title: 'šŸ› Troubleshooting', desc: 'Diagnose common issues' } ]; return ( <div className="grid sm:grid-cols-2 lg:grid-cols-4 gap-5 mt-4"> {cards.map(c => ( <a key={c.href} href={c.href} className="group block rounded-xl border border-gray-200 bg-white p-5 hover:border-blue-400 hover:shadow transition no-underline focus:outline-none focus:ring-2 focus:ring-blue-500"> <H3 className="text-base font-semibold mb-1 group-hover:text-blue-700">{c.title}</H3> <p className="text-xs text-gray-600">{c.desc}</p> </a> ))} </div> ); }; export default NextStepsStrip;

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/taurgis/sfcc-dev-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server