systemprompt-mcp-core
Version:
A specialized Model Context Protocol (MCP) server that integrates with systemprompt.io to provide powerful prompt management capabilities. This server enables seamless creation, management, and versioning of system prompts and agents through MCP. It works
29 lines • 826 B
JavaScript
export const serverConfig = {
name: "systemprompt-mcp-core",
version: "1.0.30",
metadata: {
name: "System Prompt Agent Server",
description: "A specialized MCP server for creating and managing systemprompt.io compatible prompts",
icon: "solar:align-horizontal-center-line-duotone",
color: "primary",
serverStartTime: Date.now(),
environment: process.env.NODE_ENV,
customData: {
serverFeatures: ["agent", "prompts", "systemprompt"],
},
},
};
export const serverCapabilities = {
capabilities: {
resources: {
listChanged: true,
},
tools: {},
prompts: {
listChanged: true,
},
sampling: {},
logging: {},
},
};
//# sourceMappingURL=server-config.js.map