Earth616 Vocabulary Service

Earth616 Vocabulary Service

MCP server providing access to the Earth616 Defense Supply Chain and Documentation Ontology with tools for ontology lookup and testing.

Category
Visit Server

README

Earth616 MCP Vocabulary Service

A Model Context Protocol (MCP) server for accessing the Earth616 Defense Supply Chain and Documentation Ontology (DSCDO).

Quick Start

Option 1: Local Development

  1. Build the service:

    npm install
    npm run build
    
  2. Test the service locally:

    # Test that it starts up
    node dist/index.js
    # Should output: "Earth616 MCP Vocabulary Server running on stdio"
    # Press Ctrl+C to exit
    

Option 2: Docker Development (Recommended)

  1. Start the full stack:

    npm run docker:up
    

    This starts:

    • Nginx server on port 8080 (serving example ontology files)
    • MCP vocabulary service (connected to nginx)
  2. Test the stack:

    # Test ontology server
    curl http://localhost:8080/health
    
    # View example files
    curl http://localhost:8080/example/
    
  3. View logs:

    npm run docker:logs
    
  4. Stop the stack:

    npm run docker:down
    
  5. Connect to Claude Desktop:

    Copy the configuration from claude_desktop_config.json to your Claude Desktop configuration file:

    • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json

    Or merge with existing config:

    {
      "mcpServers": {
        "earth616-vocab": {
          "command": "node",
          "args": ["/full/path/to/earth616_mcp_vocab_service/dist/index.js"],
          "env": {
            "NODE_ENV": "development"
          }
        }
      }
    }
    
  6. Test in Claude Desktop:

    After restarting Claude Desktop, you should be able to use these tools:

    • hello_vocab - Simple test tool
    • get_ontology_info - Basic ontology information
    • test_ontology_server - Test connectivity to the ontology file server
    • list_example_files - List available example files

Current Status

This is a minimal MCP server with Docker integration. Available tools:

  • hello_vocab: Echo back a message (testing connectivity)
  • get_ontology_info: Get basic information about the Earth616 ontology
  • test_ontology_server: Test connectivity to the ontology file server
  • list_example_files: List available example ontology files

The Docker setup provides:

  • nginx: Serves ontology files with proper content types
  • MCP service: Connects to nginx and provides vocabulary access
  • Health checks: /health endpoint for service monitoring

Next Steps

Following the iterative approach outlined in VOCAB_SERVICE_PLAN.md, we'll gradually add:

  1. File-based vocabulary term lookup
  2. URI resolution capabilities
  3. W3C PROF Profile navigation
  4. Complete vocabulary dataset access
  5. Cross-layer navigation tools

Development

Local Development

  • npm run dev - Watch mode for development
  • npm run build - Build TypeScript
  • npm start - Run the built server

Docker Development

  • npm run docker:build - Build Docker image
  • npm run docker:up - Start full stack (detached)
  • npm run docker:down - Stop full stack
  • npm run docker:logs - View MCP service logs
  • npm run docker:test - Quick health check test

Development Workflow

  1. Make changes to src/index.ts
  2. npm run docker:up to test with full stack
  3. Use Claude Desktop tools to test functionality
  4. npm run docker:logs to debug issues
  5. npm run docker:down when done

The server runs on stdio and communicates with Claude Desktop via the MCP protocol. The Docker setup simulates the full production environment locally.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured