Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Apple iOS & macOSPowerPhotos 3.4.7(22.09.2026 um 03:15 Uhr)
Apple iOS & macOSOmniOutliner Essentials and Pro 6.3(22.09.2026 um 03:18 Uhr)
Apple iOS & macOSOmniFocus 4.9(22.09.2026 um 03:20 Uhr)
Apple iOS & macOSFantastical 4.2 and Cardhop 2.5(22.09.2026 um 03:22 Uhr)
Apple iOS & macOSEvernote 11.34.8(22.09.2026 um 03:25 Uhr)
Apple iOS & macOSPowerPhotos 3.4.7(22.09.2026 um 03:15 Uhr)
Apple iOS & macOSOmniOutliner Essentials and Pro 6.3(22.09.2026 um 03:18 Uhr)
Apple iOS & macOSOmniFocus 4.9(22.09.2026 um 03:20 Uhr)
Apple iOS & macOSFantastical 4.2 and Cardhop 2.5(22.09.2026 um 03:22 Uhr)
Apple iOS & macOSEvernote 11.34.8(22.09.2026 um 03:25 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

I Built MCP Servers for My Own Products — Here's the Workflow

I Built MCP Servers for My Own Products — Here's the Workflow I used to manage my products through dashboards. Check analytics here, schedule posts there, pull metrics from another tab. Constant context-switching. Now I do all of it by t…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!




I Built MCP Servers for My Own Products — Here's the Workflow



I used to manage my products through dashboards. Check analytics here, schedule posts there, pull metrics from another tab. Constant context-switching.



Now I do all of it by talking to Claude.



Not through some hacked-together integration: through MCP servers I built for my own products. Model Context Protocol is the standard Anthropic published for giving AI assistants structured access to external tools. I built servers for both Spellcast and Lunary. Here's how, and why it changed everything.






What MCP actually is (in one paragraph)



MCP is a protocol that lets you define a set of "tools" — functions with typed inputs and outputs — that Claude can call during a conversation. Instead of copy-pasting data into a chat window, Claude calls your API directly and works with the live result.



The architecture: your MCP server exposes tools over stdio (or HTTP). Claude Code discovers them and can call them when relevant. You write the server once; it works in any MCP-compatible client.






The Spellcast MCP



Spellcast is my social scheduling platform. The MCP server exposes the full API as typed tools:




server.addTool({
name: 'list_posts',
description: 'List scheduled, published, draft, or failed posts with optional filters',
parameters: z.object({
account_set_id: z.string().optional(),
status: z.enum(['draft', 'scheduled', 'published', 'failed']).optional(),
limit: z.number().default(50),
}),
execute: async ({ account_set_id, status, limit }) => {
const posts = await db.query.posts.findMany({
where: buildWhereClause({ account_set_id, status }),
limit,
});
return posts;
},
});






What I can do from a Claude conversation: list_posts, create_post, update_post, publish_article, get_analytics, generate_content, update_brand_voice, and more.



The practical workflow: I describe what I want, and Claude calls the tools. "Optimise the hooks on my scheduled tweets" becomes Claude reading every post, identifying weak openers, and rewriting them in batches.






The Lunary MCP



Lunary is my astrology platform. The MCP exposes product analytics and content tools:




server.addTool({
name: 'get_dashboard',
description: 'Get key product metrics: MAU, MRR, retention, feature usage',
parameters: z.object({}),
execute: async () => {
const metrics = await getProductMetrics();
return metrics;
},
});






Tools: get_dashboard, get_dau_wau_mau, get_feature_usage, get_cohort_retention, search_grimoire, predict_churn.






What the workflow actually looks like



Me: "Check Lunary metrics and tell me what's changed since last week."



Claude calls get_dashboard, get_dau_wau_mau, get_cohort_retention. Returns a summary. Surfaces what moved.



Me: "Schedule a thread about the SEO growth for the sammii account."



Claude calls list_account_sets, get_brand_voice, generate_content to write five thread variations, waits for my pick, calls create_post to schedule it.



Me: "Those tweets from February with weak hooks — fix them."



Claude calls list_posts, reads each one, identifies weak openers, rewrites them, calls update_post in batches.



No dashboards. No tab-switching. Just conversation with full product access.






Building your own






npm install @modelcontextprotocol/sdk zod









import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
import { z } from 'zod';

const server = new McpServer({ name: 'my-product', version: '1.0.0' });

server.tool(
'get_stats',
'Get product statistics',
{},
async () => {
const stats = await fetchMyProductStats();
return { content: [{ type: 'text', text: JSON.stringify(stats) }] };
}
);

const transport = new StdioServerTransport();
await server.connect(transport);






Wire it into Claude Code's settings:




{
"mcpServers": {
"my-product": {
"command": "node",
"args": ["/path/to/my-mcp/dist/index.js"]
}
}
}






Your product's API is now accessible from any Claude conversation.






Why it matters for solo founders



The power isn't just convenience. Claude can operate across your entire product context in a single conversation — read your analytics, read your content queue, read your brand voice, and produce work that's coherent across all of them without you manually bridging the gap.



I estimate MCP saves me 5-8 hours a week in dashboard time and manual data-pulling. More importantly, it removes the friction that stops small tasks from getting done. If checking metrics requires three tabs and a copy-paste, you do it less. If it's one sentence, you do it constantly — and catch things early.






I'm Sammii, founder of Lunary and indie developer building tools I actually want to use. I write about shipping products solo, the technical decisions behind them, and figuring it all out in public.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten I Built MCP Servers for My Own Products — Here's the Workflow

Thematisch verwandte Begriffe: Built, Servers, Products, Heres · 6 Treffer

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-49449 | Joplin is an open source note-taking and to-do application that organise…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick