Install Steve Memo

Add the MCP server, then put the skill in the host skill directory. Create an organization API key on Agents and store it as STEVE_MEMO_ORG_API_KEY.

Create a key

Cursor

One click adds the HTTP MCP server. The skill is a separate download below.

Cursor MCP config

{
  "mcpServers": {
    "steve-memo": {
      "url": "https://mcp.steve-memo.com/mcp",
      "headers": {
        "Authorization": "Bearer ${env:STEVE_MEMO_ORG_API_KEY}"
      }
    }
  }
}

Claude Code

Run the CLI, or paste the JSON into ~/.claude.json. Lifecycle hooks are the repo plugin on a disposable host, not a published /plugin.

Claude MCP CLI

claude mcp add --transport http steve-memo https://mcp.steve-memo.com/mcp --header 'Authorization: Bearer ${STEVE_MEMO_ORG_API_KEY}'

Claude MCP config

{
  "mcpServers": {
    "steve-memo": {
      "type": "http",
      "url": "https://mcp.steve-memo.com/mcp",
      "headers": {
        "Authorization": "Bearer ${STEVE_MEMO_ORG_API_KEY}"
      }
    }
  }
}

Grok CLI

Add this block to ~/.grok/config.toml. Grok opens with a stateless 2025-era initialize.

Grok MCP config

[mcp_servers.steve-memo]
url = "https://mcp.steve-memo.com/mcp"
headers = { "Authorization" = "Bearer ${STEVE_MEMO_ORG_API_KEY}" }

Skill

Same file for every host. Save it to the path for that client.

Download SKILL.md
Cursor
~/.cursor/skills/steve-memo/SKILL.md
Claude Code
~/.claude/skills/steve-memo/SKILL.md
Grok CLI
~/.grok/skills/steve-memo/SKILL.md

Open the raw skill