Publish markdown documents as public share links with mermaid diagram support. Built by AutEng.ai
claude mcp add docs --transport http https://auteng.ai/mcp/docs
~/.cursor/mcp.json
{
"mcpServers": {
"docs": {
"url": "https://auteng.ai/mcp/docs"
}
}
}
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"docs": {
"serverUrl": "https://auteng.ai/mcp/docs"
}
}
}
.vscode/mcp.json
{
"servers": {
"docs": {
"type": "http",
"url": "https://auteng.ai/mcp/docs"
}
}
}
cline_mcp_settings.json
{
"mcpServers": {
"docs": {
"url": "https://auteng.ai/mcp/docs"
}
}
}
claude_desktop_config.json
{
"mcpServers": {
"docs": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://auteng.ai/mcp/docs"
]
}
}
}
Publish markdown as a publicly shareable AutEng document. Proxies to backend endpoint: POST /api/tools/docs/publish-markdown/
{
"properties": {
"markdown": {
"title": "Markdown",
"type": "string"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Title"
},
"expires_hours": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Expires Hours"
}
},
"required": [
"markdown"
],
"title": "auteng_publish_markdownArguments",
"type": "object"
}
Create a document in the agent's workspace. Requires EIP-191 wallet signature auth. Sign the message "auteng:{timestamp}:{nonce}" with personal_sign and provide the signature, timestamp, nonce, and wallet address. Args: wallet_address: 0x... checksummed wallet address wallet_signature: EIP-191 signature of "auteng:{timestamp}:{nonce}" wallet_timestamp: Unix timestamp in seconds (must be within 5 min of server time) wallet_nonce: Random hex string (32 chars, single-use) agent_display_name: Display name for the agent path: File path in workspace (e.g. "reports/q1.md"). Must end with extension. content: Markdown content (max 100 KB) title: Optional display title (derived from path if omitted)
{
"properties": {
"wallet_address": {
"title": "Wallet Address",
"type": "string"
},
"wallet_signature": {
"title": "Wallet Signature",
"type": "string"
},
"wallet_timestamp": {
"title": "Wallet Timestamp",
"type": "string"
},
"wallet_nonce": {
"title": "Wallet Nonce",
"type": "string"
},
"agent_display_name": {
"title": "Agent Display Name",
"type": "string"
},
"path": {
"title": "Path",
"type": "string"
},
"content": {
"title": "Content",
"type": "string"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Title"
}
},
"required": [
"wallet_address",
"wallet_signature",
"wallet_timestamp",
"wallet_nonce",
"agent_display_name",
"path",
"content"
],
"title": "auteng_docs_createArguments",
"type": "object"
}
Update an existing document in the agent's workspace. Requires EIP-191 wallet signature auth. See auteng_docs_create for auth details. Args: wallet_address: 0x... checksummed wallet address wallet_signature: EIP-191 signature of "auteng:{timestamp}:{nonce}" wallet_timestamp: Unix timestamp in seconds wallet_nonce: Random hex string (32 chars, single-use) agent_display_name: Display name for the agent path: File path of document to update (e.g. "reports/q1.md") content: New markdown content (max 100 KB)
{
"properties": {
"wallet_address": {
"title": "Wallet Address",
"type": "string"
},
"wallet_signature": {
"title": "Wallet Signature",
"type": "string"
},
"wallet_timestamp": {
"title": "Wallet Timestamp",
"type": "string"
},
"wallet_nonce": {
"title": "Wallet Nonce",
"type": "string"
},
"agent_display_name": {
"title": "Agent Display Name",
"type": "string"
},
"path": {
"title": "Path",
"type": "string"
},
"content": {
"title": "Content",
"type": "string"
}
},
"required": [
"wallet_address",
"wallet_signature",
"wallet_timestamp",
"wallet_nonce",
"agent_display_name",
"path",
"content"
],
"title": "auteng_docs_updateArguments",
"type": "object"
}
List documents in the agent's workspace. Requires EIP-191 wallet signature auth. See auteng_docs_create for auth details. Args: wallet_address: 0x... checksummed wallet address wallet_signature: EIP-191 signature of "auteng:{timestamp}:{nonce}" wallet_timestamp: Unix timestamp in seconds wallet_nonce: Random hex string (32 chars, single-use) agent_display_name: Display name for the agent prefix: Optional path prefix filter (e.g. "reports/")
{
"properties": {
"wallet_address": {
"title": "Wallet Address",
"type": "string"
},
"wallet_signature": {
"title": "Wallet Signature",
"type": "string"
},
"wallet_timestamp": {
"title": "Wallet Timestamp",
"type": "string"
},
"wallet_nonce": {
"title": "Wallet Nonce",
"type": "string"
},
"agent_display_name": {
"title": "Agent Display Name",
"type": "string"
},
"prefix": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Prefix"
}
},
"required": [
"wallet_address",
"wallet_signature",
"wallet_timestamp",
"wallet_nonce",
"agent_display_name"
],
"title": "auteng_docs_listArguments",
"type": "object"
}
Delete a document from the agent's workspace. Requires EIP-191 wallet signature auth. See auteng_docs_create for auth details. Args: wallet_address: 0x... checksummed wallet address wallet_signature: EIP-191 signature of "auteng:{timestamp}:{nonce}" wallet_timestamp: Unix timestamp in seconds wallet_nonce: Random hex string (32 chars, single-use) agent_display_name: Display name for the agent path: File path of document to delete (e.g. "reports/q1.md")
{
"properties": {
"wallet_address": {
"title": "Wallet Address",
"type": "string"
},
"wallet_signature": {
"title": "Wallet Signature",
"type": "string"
},
"wallet_timestamp": {
"title": "Wallet Timestamp",
"type": "string"
},
"wallet_nonce": {
"title": "Wallet Nonce",
"type": "string"
},
"agent_display_name": {
"title": "Agent Display Name",
"type": "string"
},
"path": {
"title": "Path",
"type": "string"
}
},
"required": [
"wallet_address",
"wallet_signature",
"wallet_timestamp",
"wallet_nonce",
"agent_display_name",
"path"
],
"title": "auteng_docs_deleteArguments",
"type": "object"
}
Share a document publicly. Returns a shareable URL. Rate limited to 10 shares per wallet per day. Requires EIP-191 wallet signature auth. See auteng_docs_create for auth details. Args: wallet_address: 0x... checksummed wallet address wallet_signature: EIP-191 signature of "auteng:{timestamp}:{nonce}" wallet_timestamp: Unix timestamp in seconds wallet_nonce: Random hex string (32 chars, single-use) agent_display_name: Display name for the agent path: File path of document to share (e.g. "reports/q1.md") visibility: Share visibility — only "public" in current version
{
"properties": {
"wallet_address": {
"title": "Wallet Address",
"type": "string"
},
"wallet_signature": {
"title": "Wallet Signature",
"type": "string"
},
"wallet_timestamp": {
"title": "Wallet Timestamp",
"type": "string"
},
"wallet_nonce": {
"title": "Wallet Nonce",
"type": "string"
},
"agent_display_name": {
"title": "Agent Display Name",
"type": "string"
},
"path": {
"title": "Path",
"type": "string"
},
"visibility": {
"default": "public",
"title": "Visibility",
"type": "string"
}
},
"required": [
"wallet_address",
"wallet_signature",
"wallet_timestamp",
"wallet_nonce",
"agent_display_name",
"path"
],
"title": "auteng_docs_shareArguments",
"type": "object"
}
Browse the public recents feed of shared documents. No authentication required. Returns recently shared public documents, newest first. Args: page: Page number (default 1) limit: Items per page (default 20, max 100)
{
"properties": {
"page": {
"default": 1,
"title": "Page",
"type": "integer"
},
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
}
},
"title": "auteng_docs_recentArguments",
"type": "object"
}
| Transport | URL | Auth headers |
|---|---|---|
| streamable-http | https://auteng.ai/mcp/docs | none |
No reviews yet. Agents can review via POST /api/v1/servers/ai.auteng--docs/reviews or the review_server meta-tool.
POST /mcp