You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: blog/2025-09-25-component-extension-release.md
+9-6Lines changed: 9 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,11 @@
1
1
---
2
2
slug: component-extension-release
3
3
title: 🚀 Component Extension System Released
4
+
description: Announcing the release of the powerful Component Extension System for MCP Server Generator - transform your tool from a simple generator into a comprehensive development platform for Model Context Protocol servers.
4
5
authors: [mcp-team]
5
-
tags: [release, features, components]
6
+
tags: [release, features, components, MCP, Model Context Protocol, TypeScript, CLI]
7
+
keywords: [MCP Server Generator, component extension, Model Context Protocol, MCP, TypeScript, CLI tool, dynamic components, server generation, development platform]
8
+
image: /mcp-server-generator_wordmark_light.png
6
9
---
7
10
8
11
# 🚀 Component Extension System Released
@@ -183,10 +186,10 @@ npm run inspector
183
186
## 🎓 Learning Resources
184
187
185
188
### Updated Documentation
186
-
-**[Component Overview](../docs/components/overview.md)** - Complete guide to components
187
-
-**[CLI Commands](../docs/cli-commands.md)** - Full command reference
188
-
-**[Examples](../docs/examples.md)** - Real-world use cases
Copy file name to clipboardExpand all lines: docs/installation.md
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,10 @@
1
+
---
2
+
title: Installation Guide - MCP Server Generator
3
+
description: Complete installation guide for MCP Server Generator. Learn how to install globally, use npx, and get started with generating Model Context Protocol servers.
4
+
keywords: [MCP Server Generator installation, npm install, npx, Model Context Protocol, MCP server, CLI installation, Node.js, TypeScript]
5
+
image: /mcp-server-generator_wordmark_light.png
6
+
---
7
+
1
8
# Installation
2
9
3
10
Get started with MCP Server Generator quickly and easily.
@@ -250,5 +257,5 @@ Once installed, learn how to:
250
257
251
258
-**[Use CLI Commands](./cli-commands.md)** - Master all available commands
252
259
-**[Add Components](./components/overview.md)** - Extend your projects
253
-
-**[Configure Projects](./configuration.md)** - Customize your setup
254
-
-**[Deploy Applications](./deployment.md)** - Go to production
260
+
-**[View Examples](./examples.md)** - Real-world use cases and patterns
Copy file name to clipboardExpand all lines: docs/intro.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,10 @@
1
+
---
2
+
title: Getting Started - MCP Server Generator Documentation
3
+
description: Learn how to generate and extend production-ready Model Context Protocol (MCP) servers with comprehensive tooling, TypeScript support, and modern development features.
4
+
keywords: [MCP Server Generator, getting started, Model Context Protocol, MCP, TypeScript, CLI tool, development tools, production ready, server generation]
5
+
image: /mcp-server-generator_wordmark_light.png
6
+
---
7
+
1
8
# Getting Started
2
9
3
10
Welcome to **MCP Server Generator** - the most comprehensive tool for generating and extending production-ready Model Context Protocol (MCP) servers!
Copy file name to clipboardExpand all lines: docusaurus.config.ts
+96Lines changed: 96 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,9 @@ const config: Config = {
26
26
projectName: 'Create-MCP',// Usually your repo name.
27
27
28
28
onBrokenLinks: 'throw',
29
+
30
+
// Enable sitemap generation
31
+
trailingSlash: false,
29
32
30
33
// Even if you don't use internationalization, you can use this field to set
31
34
// useful metadata like html lang. For example, if your site is Chinese, you
@@ -61,16 +64,109 @@ const config: Config = {
61
64
onInlineAuthors: 'warn',
62
65
onUntruncatedBlogPosts: 'warn',
63
66
},
67
+
sitemap: {
68
+
changefreq: 'weekly',
69
+
priority: 0.5,
70
+
ignorePatterns: ['/tags/**'],
71
+
filename: 'sitemap.xml',
72
+
},
64
73
theme: {
65
74
customCss: './src/css/custom.css',
66
75
},
67
76
}satisfiesPreset.Options,
68
77
],
69
78
],
70
79
80
+
// Additional head tags for SEO optimization
81
+
headTags: [
82
+
// Preconnect to external domains for better performance
83
+
{
84
+
tagName: 'link',
85
+
attributes: {
86
+
rel: 'preconnect',
87
+
href: 'https://fonts.googleapis.com',
88
+
},
89
+
},
90
+
{
91
+
tagName: 'link',
92
+
attributes: {
93
+
rel: 'preconnect',
94
+
href: 'https://fonts.gstatic.com',
95
+
crossorigin: 'anonymous',
96
+
},
97
+
},
98
+
// JSON-LD structured data for better SEO
99
+
{
100
+
tagName: 'script',
101
+
attributes: {
102
+
type: 'application/ld+json',
103
+
},
104
+
innerHTML: JSON.stringify({
105
+
'@context': 'https://schema.org/',
106
+
'@type': 'SoftwareApplication',
107
+
name: 'MCP Server Generator',
108
+
description: 'Generate and extend production-ready Model Context Protocol (MCP) servers with comprehensive tooling, TypeScript support, and modern development features.',
keywords: 'MCP, Model Context Protocol, server generator, CLI tool, TypeScript, development tools'
135
+
}),
136
+
},
137
+
],
138
+
71
139
themeConfig: {
72
140
// Replace with your project's social card
73
141
image: 'mcp-server-generator_wordmark_light.png',
142
+
143
+
// SEO Metadata
144
+
metadata: [
145
+
{name: 'keywords',content: 'MCP, Model Context Protocol, server generator, CLI tool, TypeScript, development tools, AI servers, machine learning, documentation generation, production ready'},
146
+
{name: 'description',content: 'Generate and extend production-ready Model Context Protocol (MCP) servers with comprehensive tooling, TypeScript support, and modern development features.'},
147
+
{name: 'author',content: 'LinuxDevil'},
148
+
{name: 'robots',content: 'index, follow'},
149
+
150
+
// Open Graph / Facebook
151
+
{property: 'og:type',content: 'website'},
152
+
{property: 'og:title',content: 'MCP Server Generator - Production-Ready Model Context Protocol Servers'},
153
+
{property: 'og:description',content: 'Generate and extend production-ready Model Context Protocol (MCP) servers with comprehensive tooling, TypeScript support, and modern development features.'},
{name: 'twitter:title',content: 'MCP Server Generator - Production-Ready MCP Servers'},
161
+
{name: 'twitter:description',content: 'Generate and extend production-ready Model Context Protocol servers with comprehensive tooling and TypeScript support.'},
0 commit comments