Skip to main content
Glama
jamalhansen

local-first-mcp

by jamalhansen

local-first-mcp

MCP server that exposes local-first AI tools to Claude.

This server allows Claude to use your locally-built tools (like resource-summarizer, promo-generator, etc.) directly via the Model Context Protocol.

Tools Exposed

  • summarize_article: Fetch and summarize a URL (via resource-summarizer)

  • generate_promo: Create promotional copy for a blog post (via promo-generator)

  • semantic_search: Search your Obsidian vault by meaning (via vault-semantic-search)

Related MCP server: obsidian-mcp-server

Installation

cd local-first-mcp
uv sync

Configuration for Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "local-first": {
      "command": "uv",
      "args": [
        "--directory",
        "/Users/jamalhansen/projects/local-first/local-first-mcp",
        "run",
        "local-first-mcp"
      ]
    }
  }
}

Project Structure

local-first-mcp/
├── src/
│   └── local_first_mcp/
│       ├── server.py    # FastMCP server definition
│       └── tools/       # Tool-specific wrappers
│           ├── promo.py
│           ├── search.py
│           └── summarize.py
├── pyproject.toml       # Managed by uv
└── tests/               # Server integration tests
F
license - not found
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jamalhansen/local-first-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server