Skip to content

Commit 5d5fbf5

Browse files
mcp server renamed in onboarding skill
1 parent 18381c9 commit 5d5fbf5

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

skills/onboard-context-matic/SKILL.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ phase in order. Stop after each interaction point and wait for the user's reply
3030
Begin with a brief, plain-language explanation of what the server does. Say it in your own words
3131
based on the following facts:
3232

33-
> The **api-context-plugins** MCP server solves a fundamental problem with AI-assisted coding: general
33+
> The **context-matic** MCP server solves a fundamental problem with AI-assisted coding: general
3434
> models are trained on public code that is often outdated, incorrect, or missing entirely for newer
3535
> SDK versions. This server acts as a **live, version-aware grounding layer**. Instead of the agent
3636
> guessing at SDK usage from training data, it queries the server for the *exact* SDK models,
@@ -220,54 +220,54 @@ a formatted menu:
220220

221221
**Quickstart: your first API call**
222222
```
223-
/integrate-api-context-plugins Set up the Spotify TypeScript SDK and fetch my top 5 tracks.
223+
/integrate-context-matic Set up the Spotify TypeScript SDK and fetch my top 5 tracks.
224224
Show me the complete client initialization and the API call.
225225
```
226226
```
227-
/integrate-api-context-plugins How do I authenticate with the Twilio API and send an SMS?
227+
/integrate-context-matic How do I authenticate with the Twilio API and send an SMS?
228228
Give me the full PHP setup including the SDK client and the send call.
229229
```
230230
```
231-
/integrate-api-context-plugins Walk me through initializing the Slack API client in a Python script and posting a message to a channel.
231+
/integrate-context-matic Walk me through initializing the Slack API client in a Python script and posting a message to a channel.
232232
```
233233

234234
**Framework-specific integration**
235235
```
236-
/integrate-api-context-plugins I'm building a Next.js app. Integrate the Google Maps Places API
236+
/integrate-context-matic I'm building a Next.js app. Integrate the Google Maps Places API
237237
to search for nearby restaurants and display them on a page. Use the TypeScript SDK.
238238
```
239239
```
240-
/integrate-api-context-plugins I'm using Laravel. Show me how to send a Twilio SMS when a user
240+
/integrate-context-matic I'm using Laravel. Show me how to send a Twilio SMS when a user
241241
registers. Include the PHP SDK setup, client initialization, and the controller code.
242242
```
243243
```
244-
/integrate-api-context-plugins I have an ASP.NET Core app. Add Twilio webhook handling so I can receive delivery status callbacks when an SMS is sent.
244+
/integrate-context-matic I have an ASP.NET Core app. Add Twilio webhook handling so I can receive delivery status callbacks when an SMS is sent.
245245
```
246246

247247
**Chaining tools for full integrations**
248248
```
249-
/integrate-api-context-plugins I want to add real-time order shipping notifications to my
249+
/integrate-context-matic I want to add real-time order shipping notifications to my
250250
Next.js store. Use Twilio to send an SMS when the order status changes to "shipped". Show me
251251
the full integration: SDK setup, the correct endpoint and its parameters, and the TypeScript code.
252252
```
253253
```
254-
/integrate-api-context-plugins I need to post a Slack message every time a Spotify track changes
254+
/integrate-context-matic I need to post a Slack message every time a Spotify track changes
255255
in my playlist monitoring app. Walk me through integrating both APIs in TypeScript — start by
256256
discovering what's available, then show me the auth setup and the exact API calls.
257257
```
258258
```
259-
/integrate-api-context-plugins In my ASP.NET Core app, I want to geocode user addresses using
259+
/integrate-context-matic In my ASP.NET Core app, I want to geocode user addresses using
260260
Google Maps and cache the results. Look up the geocode endpoint and response model, then
261261
generate the C# code including error handling.
262262
```
263263

264264
**Debugging and error handling**
265265
```
266-
/integrate-api-context-plugins My Spotify API call is returning 401. What OAuth flow should I
266+
/integrate-context-matic My Spotify API call is returning 401. What OAuth flow should I
267267
be using and how does the TypeScript SDK handle token refresh automatically?
268268
```
269269
```
270-
/integrate-api-context-plugins My Slack message posts are failing intermittently with rate limit
270+
/integrate-context-matic My Slack message posts are failing intermittently with rate limit
271271
errors. How does the Python SDK expose rate limit information and what's the recommended retry
272272
pattern?
273273
```

0 commit comments

Comments
 (0)