diff --git a/README.md b/README.md index d896288..0bcc96b 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ # Anytype MCP Server -[![NPM version](https://img.shields.io/npm/v/@anyproto/anytype-mcp.svg)](https://npmjs.org/package/@anyproto/anytype-mcp) +NPM version +Add anytype MCP server to Cursor +Add MCP Server anytype to LM Studio -The Anytype MCP Server is a [Model Context Protocol (MCP)](https://modelcontextprotocol.io) server implementation, enabling AI assistants to seamlessly interact with [Anytype's API](https://github.com/anyproto/anytype-api) through natural language. +The Anytype MCP Server is a [Model Context Protocol (MCP)](https://modelcontextprotocol.io) server enabling AI assistants to seamlessly interact with [Anytype's API](https://github.com/anyproto/anytype-api) through natural language. It bridges the gap between AI and Anytype's powerful features by converting Anytype's OpenAPI specification into MCP tools, allowing you to manage your knowledge base through conversation. @@ -19,9 +21,9 @@ It bridges the gap between AI and Anytype's powerful features by converting Anyt ### 1. Get Your API Key 1. Open Anytype -2. Go to Settings -3. Navigate to API Keys -4. Create a new API key +2. Go to App Settings +3. Navigate to API Keys section +4. Click on `Create new` button
Alternative: Get API key via CLI @@ -52,6 +54,8 @@ Add the following configuration to your MCP client settings: } ``` +> **Tip:** After creating an API key in Anytype, you can copy a ready-to-use configuration snippet with your API key already filled in from the API Keys section. +
Alternative: Global Installation diff --git a/package-lock.json b/package-lock.json index d434b1f..ddb2837 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@anyproto/anytype-mcp", - "version": "1.0.4", + "version": "1.0.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@anyproto/anytype-mcp", - "version": "1.0.4", + "version": "1.0.5", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "1.8.0", diff --git a/package.json b/package.json index 0c8f247..7cd5ba2 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "mcp", "server" ], - "version": "1.0.4", + "version": "1.0.5", "license": "MIT", "type": "module", "scripts": { diff --git a/src/init-server.ts b/src/init-server.ts index 67f7953..f174985 100644 --- a/src/init-server.ts +++ b/src/init-server.ts @@ -42,9 +42,10 @@ export async function loadOpenApiSpec(specPath?: string): Promise