@fidensa/mcp-server 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @fidensa/mcp-server
2
2
 
3
+ [![Fidensa Certified](https://fidensa.com/badges/fidensa-mcp-server.svg)](https://fidensa.com/certifications/fidensa-mcp-server)
4
+
3
5
  MCP server for [Fidensa](https://fidensa.com) — the independent AI capability certification authority.
4
6
 
5
7
  Gives your AI agent structured access to Fidensa certification data through the Model Context Protocol. Check trust scores, search for certified alternatives, compare capabilities side-by-side, and verify signed artifacts — all through MCP tool calls.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fidensa/mcp-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Fidensa AI certification authority — MCP server for trust-aware tool selection",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.mjs CHANGED
@@ -31,7 +31,7 @@ import { handleVerifyArtifact } from './tools/verify-artifact.mjs';
31
31
 
32
32
  const server = new McpServer({
33
33
  name: 'fidensa',
34
- version: '0.1.0',
34
+ version: '0.1.1',
35
35
  });
36
36
 
37
37
  const client = new ApiClient();