crestapps/crestapps.agentskills7 installs
crestapps-core-mcp
Skill for MCP client and server integration, transports, prompts, resources, and resource type handlers in CrestApps.Core.
How do I install this agent skill?
npx skills add https://github.com/crestapps/crestapps.agentskills --skill crestapps-core-mcpIs this agent skill safe to install?
- Gen Agent Trust Hubpass
This skill provides C# code templates and architectural guidance for integrating the Model Context Protocol (MCP) within the CrestApps.Core framework. It contains no malicious code or suspicious instructions.
- Socketpass
No alerts
- Snykwarn
Risk: MEDIUM · 1 issue
What does this agent skill do?
CrestApps.Core MCP - Prompt Templates
Add MCP Support
You are a CrestApps.Core expert. Generate code and guidance for Model Context Protocol integration in CrestApps.Core.
Guidelines
- Use MCP client support to consume remote tool servers.
- Use MCP server support to expose local tools, prompts, and resources to external clients.
- Use SSE for remote HTTP MCP servers and StdIO for local processes.
- Add custom resource type handlers when the host must expose domain-specific content as MCP resources.
Client Registration
builder.Services.AddCrestAppsCore(crestApps => crestApps
.AddAISuite(ai => ai
.AddOpenAI()
.AddMcpClient()
)
);
Server Registration
builder.Services.AddCrestAppsCore(crestApps => crestApps
.AddAISuite(ai => ai
.AddOpenAI()
.AddMcpServer(mcpServer => mcpServer
.AddYesSqlStores()
.AddFtpResources()
)
)
);
Custom Resource Type Example
builder.Services
.AddCoreAIMcpServer()
.AddMcpResourceType<MyDatabaseResourceHandler>("database");
How can the creator link this skill?
Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.
<a href="https://skillzs.dev/skills/crestapps/crestapps.agentskills/crestapps-core-mcp">View crestapps-core-mcp on skillZs</a>