npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@intangle/mcp-server

v2.3.1

Published

Model Context Protocol server for Intangle - AI context that persists across conversations

Readme

@intangle/mcp-server

Model Context Protocol server for Intangle - Intelligent AI context that persists across conversations.

What is Intangle?

Intangle is an AI context system that gives Claude and other AI assistants persistent, searchable context across all your conversations and isolated spaces. Unlike traditional chat interfaces where context is lost between sessions, Intangle maintains your personal context across isolated spaces, with intelligent storing and retrieval.

Important: You need an Intangle account to use this MCP server. Sign up at intangle.app

Setup

  1. Create an Intangle account at intangle.app and get your API key from Settings → Connect

  2. **Configure Provider Access **

Claude code by running the command below (recommend "-s" user for global across projects):

claude mcp add intangle -s user --env MCP_API_KEY=<your-api-key-here> --env NEXT_APP_URL=https://intangle.app -- npx -y @intangle/mcp-server

Standard MCP (Claude desktop, Cursor): by adding to your claude_desktop_config.json or mcp.json:

{
  "mcpServers": {
    "intangle": {
      "command": "npx",
      "args": ["@intangle/mcp-server"],
      "env": {
        "MCP_API_KEY": "your-api-key-here",
        "NEXT_APP_URL": "https://intangle.app"
      }
    }
  }
}

Note: The config file location varies by OS:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
  1. Restart Claude Desktop to load the MCP server

Usage

Once configured, Claude will automatically have access to your Intangle context. You can:

  • Store context: "Remember that I prefer TypeScript over JavaScript"
  • Search context: "What did we discuss about the authentication system?"
  • Organize with spaces: Separate context for personal, work, and different projects
  • Tag with topics: Context is automatically tagged and organized
  • Access across conversations: All context persists between chat sessions

Available Tools

The MCP server provides these tools to Claude:

  • add_context - Store new context with topics
  • search_context - Search across all your context
  • get_recent_context - Retrieve recent context
  • list_spaces - View available context spaces
  • get_space_info - Get details about a specific space
  • get_entities - Extract entities from context
  • delete_context - Remove specific context

Features

  • Multi-space support: Organize context into separate spaces (personal, work, projects)
  • Intelligent search: Combines semantic search with text matching
  • Entity extraction: Automatically identifies people, places, and concepts
  • Temporal awareness: Tracks when events happened vs when they were recorded

Troubleshooting

If Claude can't access your context:

  1. Verify your API key is correct
  2. Check that the MCP server is listed in Claude's tool menu
  3. Ensure you have an active internet connection
  4. Try restarting Claude Desktop

Support

License

MIT