Skip to main content
Glama
manimohans

Farcaster MCP Server

by manimohans

Farcaster MCP 서버

대장간 배지

Farcaster 네트워크( farcaster.xyz )와 상호 작용할 수 있는 도구를 제공하는 MCP 서버로, AI 모델이 캐스트를 가져오고, 채널을 검색하고, 콘텐츠를 분석할 수 있습니다.

특징

  • 사용자 캐스트 가져오기 : FID로 특정 Farcaster 사용자의 캐스트를 검색합니다.

  • 사용자 이름 캐스트 가져오기 : 사용자 이름으로 특정 Farcaster 사용자의 캐스트를 검색합니다.

  • 채널 캐스트 가져오기 : 특정 Farcaster 채널의 캐스트를 검색합니다.

Related MCP server: Lens Protocol MCP Server

설치

지엑스피1

용법

서버 실행

npm start

MCP Inspector와 함께 사용

npx @modelcontextprotocol/inspector node ./build/index.js

Claude와 함께 데스크톱 사용

  1. 데스크톱용 Claude 설치

  2. 다음 위치에서 Claude for Desktop App 구성을 엽니다.

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

    • Windows: %APPDATA%\Claude\claude_desktop_config.json

  3. 다음 구성을 추가합니다.

{
  "mcpServers": {
    "farcaster": {
      "command": "node",
      "args": ["/absolute/path/to/farcaster-mcp/build/index.js"]
    }
  }
}
  1. 데스크톱용 Claude를 다시 시작하세요

Smithery와 함께 사용

이 프로젝트에는 쉬운 배포를 위한 Smithery 구성 파일이 포함되어 있습니다.

# Install Smithery CLI
npm install -g @smithery/cli

# Deploy to Smithery (specify the client, e.g., claude, cline, windsurf, etc.)
npx @smithery/cli install @manimohans/farcaster-mcp --client claude

사용 가능한 클라이언트 옵션: 클로드, 클라인, 윈드서프, 루클라인, 위트시, 엔콩보

사용 가능한 도구

get-user-casts

FID(Farcaster ID)를 사용하여 특정 Farcaster 사용자의 캐스트를 검색합니다.

매개변수:

  • fid : Farcaster 사용자 ID (번호)

  • limit (선택 사항): 반환할 최대 캐스트 수(기본값: 10)

예시 쿼리: "FID 6846의 최신 캐스트를 보여주세요."

get-username-casts

사용자 이름으로 특정 Farcaster 사용자의 캐스트를 검색합니다.

매개변수:

  • username : Farcaster 사용자 이름(문자열)

  • limit (선택 사항): 반환할 최대 캐스트 수(기본값: 10)

예시 쿼리: "사용자 이름 'mani'의 최신 캐스트를 보여주세요."

get-channel-casts

특정 Farcaster 채널에서 캐스트를 검색합니다.

매개변수:

  • channel : 채널 이름 또는 URL(문자열)

  • limit (선택 사항): 반환할 최대 캐스트 수(기본값: 10)

예시 쿼리: ”aichannel 채널의 최신 출연진을 보여주세요.”

대장간 구성

이 저장소에는 Smithery에 필요한 구성 파일이 포함되어 있습니다.

  • smithery.yaml : Smithery 배포를 위한 YAML 구성

  • smithery.json : Smithery 기능에 대한 JSON 구성

  • Dockerfile : Smithery 배포를 위한 컨테이너 구성

API 세부 정보

이 구현에서는 Farcaster Hubble API를 사용하여 데이터를 가져옵니다.

개발

# Run in development mode
npm run dev

특허

MIT

Available Tools

3 tools
get-channel-castsC

Get casts from a specific Farcaster channel

ParametersJSON Schema
NameRequiredDescriptionDefault
channelYesChannel name (e.g., 'aichannel') or URL
limitNoMaximum number of casts to return (default: 10)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states what the tool does but doesn't describe behavioral traits such as whether it's read-only, has rate limits, authentication needs, pagination behavior, or what the return format looks like. This leaves significant gaps for a tool that presumably fetches data.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's appropriately sized and front-loaded, with every part contributing to understanding the core function.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of a data-fetching tool with no annotations and no output schema, the description is incomplete. It lacks details on behavioral aspects like safety, response format, or error handling, which are crucial for an agent to use the tool effectively in context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description doesn't add any parameter-specific information beyond what's already in the input schema, which has 100% schema description coverage. It mentions 'specific Farcaster channel' but doesn't elaborate on the 'channel' parameter's semantics or the 'limit' parameter's implications. Baseline 3 is appropriate since the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get casts') and target resource ('from a specific Farcaster channel'), providing a specific verb+resource combination. However, it doesn't explicitly differentiate from sibling tools like 'get-user-casts' or 'get-username-casts', which would require mentioning channel-specific versus user-specific retrieval.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like the sibling tools 'get-user-casts' or 'get-username-casts'. It lacks any context about use cases, prerequisites, or exclusions, leaving the agent to infer usage based on the name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get-user-castsB

Get casts from a specific Farcaster user by FID

ParametersJSON Schema
NameRequiredDescriptionDefault
fidYesFarcaster user ID (FID)
limitNoMaximum number of casts to return (default: 10)

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states what the tool does but lacks details on permissions, rate limits, error handling, or return format. For a read operation with no annotations, this leaves significant gaps in understanding how the tool behaves.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence with zero waste. It is front-loaded with the core purpose and efficiently conveys the essential information without unnecessary elaboration.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (2 parameters, no output schema, no annotations), the description is minimally adequate but incomplete. It lacks details on behavioral aspects like pagination, error cases, or output structure, which are important for a read operation without annotations to guide the agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents both parameters (fid and limit) adequately. The description adds no additional meaning beyond what the schema provides, such as parameter interactions or usage examples, which aligns with the baseline score when schema coverage is high.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get casts') and specifies the resource ('from a specific Farcaster user by FID'), making the purpose explicit. It distinguishes from sibling tools like 'get-channel-casts' and 'get-username-casts' by focusing on user ID rather than channel or username.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'get-username-casts' or 'get-channel-casts'. It does not mention prerequisites, exclusions, or contextual factors that would help an agent choose between these sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get-username-castsC

Get casts from a specific Farcaster username

ParametersJSON Schema
NameRequiredDescriptionDefault
usernameYesFarcaster username
limitNoMaximum number of casts to return (default: 10)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states what the tool does but lacks details on traits like whether it's read-only, requires authentication, has rate limits, returns paginated results, or handles errors. For a retrieval tool with zero annotation coverage, this is a significant gap in transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's front-loaded with the core action and resource, making it easy to parse. Every word earns its place, achieving optimal conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (data retrieval with parameters), lack of annotations, and no output schema, the description is incomplete. It doesn't explain what 'casts' entail (e.g., content, metadata), return format, error handling, or behavioral constraints. For a tool with these contextual gaps, the description should provide more completeness to aid the agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with clear descriptions for both parameters ('username' as Farcaster username and 'limit' with default). The description adds no additional parameter semantics beyond what the schema provides, such as format examples for usernames or constraints on limit values. Baseline 3 is appropriate since the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get' and resource 'casts from a specific Farcaster username', making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'get-channel-casts' and 'get-user-casts', which likely retrieve casts by different criteria. The description is specific but lacks sibling distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. With sibling tools like 'get-channel-casts' and 'get-user-casts' available, there's no indication of when this username-based retrieval is preferred, such as for public profiles or specific user identification. No exclusions or prerequisites are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 3 tool updates
    • First observedget-channel-casts
    • First observedget-user-casts
    • First observedget-username-casts

TDQS

C2.9/5.0

Scored across 3 tools

Disambiguation3/5

The three tools all retrieve casts but from different sources (channel, user by FID, username), which provides some distinction. However, the overlap in purpose (getting casts) and the potential confusion between user-based tools (FID vs. username) create moderate ambiguity, as an agent might struggle to choose the right one without clear context about the available identifier.

Naming Consistency5/5

All tool names follow a consistent verb-noun pattern with hyphens (get-channel-casts, get-user-casts, get-username-casts). This uniformity makes the set predictable and easy to understand, with no deviations in naming style or structure.

Tool Count2/5

With only 3 tools, the server feels thin for a Farcaster domain, which likely involves more operations like posting casts, interacting with content, or accessing user profiles. This limited set may hinder agents from performing comprehensive tasks, indicating an under-scoped tool surface.

Completeness1/5

The tool set is severely incomplete for a Farcaster server, covering only read operations for casts from specific sources. It lacks essential CRUD operations such as creating or deleting casts, user management, channel interactions, or broader API features, leaving significant gaps that will cause agent failures in typical workflows.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    A Model Context Protocol server that allows Claude to interact with Warpcast accounts, enabling actions like posting casts, reading content, searching by keywords, and managing channel interactions through natural language.
    3
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables AI tools to interact with the Lens Protocol decentralized social network ecosystem. Supports fetching profiles, posts, followers, searching content, and accessing social graph data through standardized MCP interfaces.
    4
    -
  • A
    license
    Not graded
    quality
    Not graded
    maintenance
    Enables interaction with Warpcast (Farcaster) through Claude, allowing users to post casts, search and read content, get trending posts, and manage channel subscriptions using natural language.
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides tools for AI assistants to query the Canton Network for data on contracts, governance, validators, and party transactions through the Lighthouse Explorer API. It enables seamless interaction with blockchain statistics, price history, and name services without requiring an API key.
    231 npm
    MIT