Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mcp-advisor",
"version": "0.3.1",
"version": "0.3.2",
"description": "MCP Server to assist LLMs and humans on Model Context Protocol (MCP) spec compliance and understanding",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
10 changes: 7 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,16 @@ const serverCapabilities: ServerCapabilities = {
prompts: {},
resources: {},
completions: {},
resourceTemplates: {} // Add resource templates capability
resourceTemplates: {}
};

const server = new Server(
{ name: 'mcp-advisor', version: '0.1.0' },
{ capabilities: serverCapabilities }
{ name: 'mcp-advisor', version: '0.3.2' },
{ capabilities: serverCapabilities,
instructions: `I am a Model Context Protocol (MCP) documentation expert that provides comprehensive access to the MCP specification and helps evaluate server implementations for compliance.
I have access to the complete MCP specification across multiple versions (${SUPPORTED_VERSIONS.join(', ')}) including schemas, architecture docs, protocol details, and implementation guides. I can explain any MCP concept in detail with authoritative references and evaluate server code against the specification requirements.
Default version: ${VERSION} (can be overridden per request)`
}
);

const prompts = [
Expand Down