Skip to content

hyperarc/hyperarc-mcp-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HyperArc MCP Server

Give your favorite agent access to your HyperArc memories and assets.

Usage

  • Login to HyperArc.
  • Go to settings to generate a Hyperarc Personal Access Token.

Claude Desktop

{
    "mcpServers": {
        "hyperarc": {
            "command": "npx",
            "args": [
                "-y", 
                "hyperarc-mcp-server"
            ],
            "env": {
                "HYPERARC_TOKEN": "hyperarc_your_token"
            }
        }
    }
}

VS Code

{
    "mcp": {
        "inputs": [
            {
                "type": "promptString",
                "id": "hyperarc-token",
                "description": "HyperArc Personal Access Token",
                "password": true
            }
        ],
        "servers": {
            "hyperarc-mcp-server": {
                "type": "stdio",
                "command": "npx",
                "args": [
                    "-y", 
                    "hyperarc-mcp-server"
                ],
                "env": {
                    "HYPERARC_TOKEN": "${input:hyperarc-token}"
                }
            }
        }
    }
}

Standalone

  • Clone the repo and run run npm install.
  • export HYPERARC_TOKEN=<token value>
  • npm run build
  • Run the server via npm start (or the MCP Inspector via npm run inspect).

Development

  • npm run build
  • Point npx to your local repo instead of hyperarc-mcp-server with <path>/hyperarc-mcp-server/bin/cli.js.
  • Restart your client which should restart your server.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •